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-dis/dis.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-dis/dis.cpp')
-rw-r--r-- | llvm/tools/llvm-dis/dis.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/tools/llvm-dis/dis.cpp b/llvm/tools/llvm-dis/dis.cpp index 712cf85e812..2a7eb4e06ea 100644 --- a/llvm/tools/llvm-dis/dis.cpp +++ b/llvm/tools/llvm-dis/dis.cpp @@ -16,15 +16,14 @@ // //===----------------------------------------------------------------------===// -#include <iostream.h> -#include <fstream.h> #include "llvm/Module.h" #include "llvm/Assembly/Writer.h" #include "llvm/Bytecode/Reader.h" -#include "llvm/Support/CommandLine.h" #include "llvm/Method.h" -#include "llvm/Support/DepthFirstIterator.h" -#include "llvm/Support/PostOrderIterator.h" +#include "Support/DepthFirstIterator.h" +#include "Support/PostOrderIterator.h" +#include "Support/CommandLine.h" +#include <fstream> // OutputMode - The different orderings to print basic blocks in... enum OutputMode { |