diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-15 23:48:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-15 23:48:37 +0000 |
commit | 6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e (patch) | |
tree | f313497762144b6387d767e22721e24f114652b1 /lib | |
parent | f7d3e696a5f6e1f467ff107b6db75175887f4916 (diff) | |
download | external_llvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.zip external_llvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.tar.gz external_llvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.tar.bz2 |
Add missing includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 6e8b374..de29365 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -20,8 +20,10 @@ #include "llvm/CodeGen/GCStrategy.h" #include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetAsmInfo.h" +#include "llvm/Target/TargetRegistry.h" #include "llvm/Transforms/Scalar.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FormattedStream.h" using namespace llvm; |