diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-12-07 22:21:48 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-12-07 22:21:48 +0000 |
commit | 9bfb1e1f29124d62e2290b20e395e76fff6f9a2a (patch) | |
tree | 74be612bc2cc5525dbdd5e05705e82ba3fcca8ff /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | f4805ce89acbd92db0f143cbed9d66013e0ec0f3 (diff) | |
download | bcm5719-llvm-9bfb1e1f29124d62e2290b20e395e76fff6f9a2a.tar.gz bcm5719-llvm-9bfb1e1f29124d62e2290b20e395e76fff6f9a2a.zip |
What should be the last unnecessary <iostream>s in the library.
llvm-svn: 32333
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index a8d3abccafb..e6ac2c3573e 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -19,6 +19,7 @@ #include "Record.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/Streams.h" #include <set> #include <algorithm> using namespace llvm; @@ -527,8 +528,8 @@ ComplexPattern::ComplexPattern(Record *R) { } else if (PropList[i]->getName() == "SDNPOptInFlag") { Properties |= 1 << SDNPOptInFlag; } else { - std::cerr << "Unsupported SD Node property '" << PropList[i]->getName() - << "' on ComplexPattern '" << R->getName() << "'!\n"; + cerr << "Unsupported SD Node property '" << PropList[i]->getName() + << "' on ComplexPattern '" << R->getName() << "'!\n"; exit(1); } } |