diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-03 00:10:29 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-03 00:10:29 +0000 |
commit | 38a22bffdc863f8680f17cb31874af3cf4ce67c2 (patch) | |
tree | 7c23168efc503cc591d314db12894a8c213cf8da /llvm/utils/TableGen/CodeGenTarget.h | |
parent | f30ee8820a9dc7dcdb28928af1adfb993b83dd1a (diff) | |
download | bcm5719-llvm-38a22bffdc863f8680f17cb31874af3cf4ce67c2.tar.gz bcm5719-llvm-38a22bffdc863f8680f17cb31874af3cf4ce67c2.zip |
Replace std::iostreams with raw_ostream in TableGen.
- Sorry, I can't help myself.
- No intended functionality change.
llvm-svn: 74742
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.h b/llvm/utils/TableGen/CodeGenTarget.h index c7cc77ccd41..0ec99558146 100644 --- a/llvm/utils/TableGen/CodeGenTarget.h +++ b/llvm/utils/TableGen/CodeGenTarget.h @@ -17,10 +17,10 @@ #ifndef CODEGEN_TARGET_H #define CODEGEN_TARGET_H +#include "llvm/Support/raw_ostream.h" #include "CodeGenRegisters.h" #include "CodeGenInstruction.h" #include <algorithm> -#include <iosfwd> #include <map> namespace llvm { |