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 | 73e11d77aaa09d5b126aef0b600c31ebd1206c3d (patch) | |
tree | 633c5278b1d3331458d61cd6ab49c91490c9f70d | |
parent | b2c823d2be812a4ed9bcdc80bc2f6d5c1b062660 (diff) |
Use the standard header not the old one
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@886 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/opt/opt.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 1e9117cddb..7563c39777 100644 --- a/tools/opt/opt.cpp +++ b/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; |