diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-18 06:13:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-18 06:13:08 +0000 |
commit | ed8947fb115c10db1948f3d5e1236c2b466619e1 (patch) | |
tree | eeace9c2b5ad4d71c159ef9453a5c5586b022d5a /llvm/tools | |
parent | 5055730379ddae5bfb06ae43ebbe17d6736fe4c4 (diff) | |
download | bcm5719-llvm-ed8947fb115c10db1948f3d5e1236c2b466619e1.tar.gz bcm5719-llvm-ed8947fb115c10db1948f3d5e1236c2b466619e1.zip |
Use the standard header not the old one
llvm-svn: 886
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/opt/opt.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 1e9117cddb7..7563c397772 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -6,8 +6,6 @@ // //===----------------------------------------------------------------------===// -#include <iostream.h> -#include <fstream.h> #include "llvm/Module.h" #include "llvm/Bytecode/Reader.h" #include "llvm/Bytecode/Writer.h" @@ -15,6 +13,7 @@ #include "llvm/Optimizations/AllOpts.h" #include "llvm/Transforms/Instrumentation/TraceValues.h" #include "llvm/Transforms/PrintModulePass.h" +#include <fstream> using namespace opt; |