diff options
author | Karl Schimpf <kschimpf@google.com> | 2013-04-30 13:57:34 -0700 |
---|---|---|
committer | Karl Schimpf <kschimpf@google.com> | 2013-04-30 13:57:34 -0700 |
commit | 7332f61c83d446f0505a3c50b2c874823e10e1a8 (patch) | |
tree | 40b3126a802659df939d82692153a5179d814563 | |
parent | 1174111b6f8ab1b95085aeb9c3c451e155a27642 (diff) |
Remove unnecessary includes from pnacl-freeze.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3405
Review URL: https://codereview.chromium.org/14322020
-rw-r--r-- | tools/pnacl-freeze/pnacl-freeze.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/pnacl-freeze/pnacl-freeze.cpp b/tools/pnacl-freeze/pnacl-freeze.cpp index 1134dbdd5c..963000a714 100644 --- a/tools/pnacl-freeze/pnacl-freeze.cpp +++ b/tools/pnacl-freeze/pnacl-freeze.cpp @@ -12,28 +12,19 @@ //===----------------------------------------------------------------------===// #include "llvm/IR/LLVMContext.h" -#include "llvm/Assembly/AssemblyAnnotationWriter.h" // Note: We need the following to provide the API for calling the NaCl // Bitcode Writer to generate the frozen file. #include "llvm/Bitcode/NaCl/NaClReaderWriter.h" // Note: We need the following to provide the API for calling the (LLVM) // Bitcode Reader to read in the corresonding pexe file to freeze. #include "llvm/Bitcode/ReaderWriter.h" -#include "llvm/DebugInfo.h" -#include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/Module.h" -#include "llvm/IR/Type.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/DataStream.h" -#include "llvm/Support/FormattedStream.h" #include "llvm/Support/ManagedStatic.h" -#include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Signals.h" #include "llvm/Support/ToolOutputFile.h" -#include "llvm/Support/system_error.h" - -// llvm/Bitcode/BitstreamWriter.h using namespace llvm; |