diff options
Diffstat (limited to 'tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | tools/llvm-as/llvm-as.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp index 72b63ecfdd..ee664f1524 100644 --- a/tools/llvm-as/llvm-as.cpp +++ b/tools/llvm-as/llvm-as.cpp @@ -9,14 +9,13 @@ // //===------------------------------------------------------------------------=== -#include <iostream.h> -#include <fstream.h> -#include <string> #include "llvm/Module.h" #include "llvm/Assembly/Parser.h" #include "llvm/Assembly/Writer.h" #include "llvm/Bytecode/Writer.h" -#include "llvm/Support/CommandLine.h" +#include "Support/CommandLine.h" +#include <fstream> +#include <string> cl::String InputFilename ("", "Parse <arg> file, compile to bytecode", 0, "-"); cl::String OutputFilename("o", "Override output filename", cl::NoFlags, ""); |