summaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/InstPrinter
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-07-26 00:24:13 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-07-26 00:24:13 +0000
commit94b9550a32d189704a8eae55505edf62662c0534 (patch)
tree5d1353ef699f1f47f8ffad6bbaa926501d53946c /lib/Target/PowerPC/InstPrinter
parentfcf5a8341f522d95ecbe5af8b1214bf1ea8931dd (diff)
downloadllvm-94b9550a32d189704a8eae55505edf62662c0534.tar.gz
llvm-94b9550a32d189704a8eae55505edf62662c0534.tar.bz2
llvm-94b9550a32d189704a8eae55505edf62662c0534.tar.xz
Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/InstPrinter')
-rw-r--r--lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
index 1a9bd76135..8f34b19925 100644
--- a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
+++ b/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"