diff options
Diffstat (limited to 'tools/as')
-rw-r--r-- | tools/as/as.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/as/as.cpp b/tools/as/as.cpp index 72b63ec..ee664f1 100644 --- a/tools/as/as.cpp +++ b/tools/as/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, ""); |