summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-12-07 22:21:48 +0000
committerBill Wendling <isanbard@gmail.com>2006-12-07 22:21:48 +0000
commitf5da13367f88f06e3b585dc2263ab6e9ca6c4bf8 (patch)
tree3cf9a9612ba0a90fee9ec668819ae5a69a7bada1 /utils/TableGen/InstrInfoEmitter.cpp
parent6e49d8b4bf7b5911dc953551672161b8f9a7418f (diff)
downloadllvm-f5da13367f88f06e3b585dc2263ab6e9ca6c4bf8.tar.gz
llvm-f5da13367f88f06e3b585dc2263ab6e9ca6c4bf8.tar.bz2
llvm-f5da13367f88f06e3b585dc2263ab6e9ca6c4bf8.tar.xz
What should be the last unnecessary <iostream>s in the library.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index a1c808b070..3d4da0ee28 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -37,7 +37,7 @@ void InstrInfoEmitter::runEnums(std::ostream &OS) {
}
if (Namespace.empty()) {
- std::cerr << "No instructions defined!\n";
+ cerr << "No instructions defined!\n";
exit(1);
}
@@ -349,7 +349,7 @@ void InstrInfoEmitter::emitShiftedValue(Record *R, StringInit *Val,
return;
}
- std::cerr << "Unhandled initializer: " << *Val << "\n";
+ cerr << "Unhandled initializer: " << *Val << "\n";
throw "In record '" + R->getName() + "' for TSFlag emission.";
}