Rename files for consistency.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134546 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2011-07-06 22:01:53 +00:00
parent 298bc9a1a5
commit ed5e355214
7 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@
#define DEBUG_TYPE "asm-printer"
#include "X86ATTInstPrinter.h"
#include "X86InstComments.h"
#include "MCTargetDesc/X86TargetDesc.h"
#include "MCTargetDesc/X86MCTargetDesc.h"
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCExpr.h"

View File

@ -13,7 +13,7 @@
//===----------------------------------------------------------------------===//
#include "X86InstComments.h"
#include "MCTargetDesc/X86TargetDesc.h"
#include "MCTargetDesc/X86MCTargetDesc.h"
#include "llvm/MC/MCInst.h"
#include "llvm/Support/raw_ostream.h"
#include "../Utils/X86ShuffleDecode.h"

View File

@ -15,7 +15,7 @@
#define DEBUG_TYPE "asm-printer"
#include "X86IntelInstPrinter.h"
#include "X86InstComments.h"
#include "MCTargetDesc/X86TargetDesc.h"
#include "MCTargetDesc/X86MCTargetDesc.h"
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCExpr.h"

View File

@ -1,2 +1,2 @@
add_llvm_library(LLVMX86Desc X86TargetDesc.cpp)
add_llvm_library(LLVMX86Desc X86MCTargetDesc.cpp)

View File

@ -1,4 +1,4 @@
//===-- X86TargetDesc.cpp - X86 Target Descriptions -------------*- C++ -*-===//
//===-- X86MCTargetDesc.cpp - X86 Target Descriptions -----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "X86TargetDesc.h"
#include "X86MCTargetDesc.h"
#include "llvm/MC/MCInstrInfo.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h"

View File

@ -1,4 +1,4 @@
//===-- X86TargetDesc.h - X86 Target Descriptions ---------------*- C++ -*-===//
//===-- X86MCTargetDesc.h - X86 Target Descriptions -------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
@ -11,8 +11,8 @@
//
//===----------------------------------------------------------------------===//
#ifndef X86TARGETDESC_H
#define X86TARGETDESC_H
#ifndef X86MCTARGETDESC_H
#define X86MCTARGETDESC_H
namespace llvm {
class Target;

View File

@ -15,7 +15,7 @@
#ifndef TARGET_X86_H
#define TARGET_X86_H
#include "MCTargetDesc/X86TargetDesc.h"
#include "MCTargetDesc/X86MCTargetDesc.h"
#include "llvm/Support/DataTypes.h"
#include "llvm/Target/TargetMachine.h"