summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-04 18:06:11 +0000
committerChris Lattner <sabre@nondot.org>2010-04-04 18:06:11 +0000
commit9d1c1ada213c80135fbdda704175aae689daa6f9 (patch)
treecbeefb7dba9325beb47b02e4dd40f9e306922a71 /include/llvm/CodeGen/AsmPrinter.h
parentbbef815a3beeba3161cdad8e1cc108644bfc5ddc (diff)
downloadllvm-9d1c1ada213c80135fbdda704175aae689daa6f9.tar.gz
llvm-9d1c1ada213c80135fbdda704175aae689daa6f9.tar.bz2
llvm-9d1c1ada213c80135fbdda704175aae689daa6f9.tar.xz
remove TargetMachine.h #include, also, TRI isn't used frequently
enough to warrant caching in AsmPrinter, so remove it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100336 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index a46fa4955c..212b1c1c8e 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -18,7 +18,6 @@
#include "llvm/CodeGen/MachineFunctionPass.h"
#include "llvm/Support/DebugLoc.h"
-#include "llvm/Target/TargetMachine.h"
namespace llvm {
class BlockAddress;
@@ -84,10 +83,6 @@ namespace llvm {
///
const MCAsmInfo *MAI;
- /// Target Register Information.
- ///
- const TargetRegisterInfo *TRI;
-
/// OutContext - This is the context for the output file that we are
/// streaming. This owns all of the global MC-related objects for the
/// generated translation unit.