diff options
| -rw-r--r-- | clang/lib/CodeGen/BackendUtil.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/BackendUtil.cpp b/clang/lib/CodeGen/BackendUtil.cpp index 2e6e29468c9..aaeeb9f6bd3 100644 --- a/clang/lib/CodeGen/BackendUtil.cpp +++ b/clang/lib/CodeGen/BackendUtil.cpp @@ -15,6 +15,7 @@  #include "clang/Frontend/FrontendDiagnostic.h"  #include "llvm/Module.h"  #include "llvm/PassManager.h" +#include "llvm/Analysis/Verifier.h"  #include "llvm/Assembly/PrintModulePass.h"  #include "llvm/Bitcode/ReaderWriter.h"  #include "llvm/CodeGen/RegAllocRegistry.h" @@ -23,14 +24,17 @@  #include "llvm/Support/CommandLine.h"  #include "llvm/Support/FormattedStream.h"  #include "llvm/Support/PrettyStackTrace.h" -#include "llvm/Support/PassManagerBuilder.h"  #include "llvm/Support/Timer.h"  #include "llvm/Support/raw_ostream.h"  #include "llvm/Target/TargetData.h" +#include "llvm/Target/TargetLibraryInfo.h"  #include "llvm/Target/TargetMachine.h"  #include "llvm/Target/TargetOptions.h"  #include "llvm/Target/TargetRegistry.h"  #include "llvm/Transforms/Instrumentation.h" +#include "llvm/Transforms/IPO.h" +#include "llvm/Transforms/IPO/PassManagerBuilder.h" +#include "llvm/Transforms/Scalar.h"  using namespace clang;  using namespace llvm;  | 

