diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-26 00:24:13 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-26 00:24:13 +0000 |
commit | 1142444565b391fc4778109b6880b17c17a8c110 (patch) | |
tree | 8677f095dd71af18bf566de8b78da3931caab40f /llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | |
parent | f6fb627ffe20c1b60865bbdcc001ff88df97266d (diff) | |
download | bcm5719-llvm-1142444565b391fc4778109b6880b17c17a8c110.tar.gz bcm5719-llvm-1142444565b391fc4778109b6880b17c17a8c110.zip |
Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser.
llvm-svn: 136027
Diffstat (limited to 'llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp index 1a9bd761359..8f34b19925e 100644 --- a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp +++ b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp @@ -13,7 +13,8 @@ #define DEBUG_TYPE "asm-printer" #include "PPCInstPrinter.h" -#include "PPCPredicates.h" +#include "MCTargetDesc/PPCBaseInfo.h" +#include "MCTargetDesc/PPCPredicates.h" #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCInst.h" #include "llvm/Support/raw_ostream.h" |