summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-15 23:48:37 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-15 23:48:37 +0000
commit6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e (patch)
treef313497762144b6387d767e22721e24f114652b1
parentf7d3e696a5f6e1f467ff107b6db75175887f4916 (diff)
downloadllvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.tar.gz
llvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.tar.bz2
llvm-6d823cd39d8d16571682cd1bb4cbf2ecb4815d8e.tar.xz
Add missing includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75862 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/LLVMTargetMachine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp
index 6e8b374e48..de293651a6 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;