diff options
author | Dan Gohman <gohman@apple.com> | 2007-06-04 16:11:03 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-06-04 16:11:03 +0000 |
commit | a23ef8a8f2cd35295fe1ff0f42d7a2dbe41a1a20 (patch) | |
tree | 095e5c196e2bac103b01fa37f73a296a58e19ad6 /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | 92a7f3a65eea6129fa41b84d92313a87e0673da4 (diff) | |
download | bcm5719-llvm-a23ef8a8f2cd35295fe1ff0f42d7a2dbe41a1a20.tar.gz bcm5719-llvm-a23ef8a8f2cd35295fe1ff0f42d7a2dbe41a1a20.zip |
Remove the operator<< for MVT::ValueType in preparation for MVT::ValueType
being changed from an enum to an integer type, which can't have a custom
operator<< overload.
llvm-svn: 37412
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index 7d2e7b3d134..a6677a2bf8f 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -99,11 +99,6 @@ std::string llvm::getEnumName(MVT::ValueType T) { } -std::ostream &llvm::operator<<(std::ostream &OS, MVT::ValueType T) { - return OS << getName(T); -} - - /// getTarget - Return the current instance of the Target class. /// CodeGenTarget::CodeGenTarget() { |