diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-27 00:03:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-27 00:03:19 +0000 |
commit | 5de2204fe84a89604a31253a299ab265dee76934 (patch) | |
tree | 142e5dd065732bf4cc8775f69ce0979230836e51 /llvm/tools/llvm-as/llvm-as.cpp | |
parent | f679703feb9c4702a55f41caec15d5adf997cac9 (diff) | |
download | bcm5719-llvm-5de2204fe84a89604a31253a299ab265dee76934.tar.gz bcm5719-llvm-5de2204fe84a89604a31253a299ab265dee76934.zip |
Create a new #include "Support/..." directory structure to move things
from "llvm/Support/..." that are not llvm dependant.
Move files and fix #includes
llvm-svn: 1400
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index 72b63ecfdde..ee664f15249 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/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, ""); |