[llvm-commits] [llvm] r55034 - /llvm/trunk/utils/TableGen/CodeGenTarget.cpp
Dan Gohman
gohman at apple.com
Tue Aug 19 18:44:30 PDT 2008
Author: djg
Date: Tue Aug 19 20:44:30 2008
New Revision: 55034
URL: http://llvm.org/viewvc/llvm-project?rev=55034&view=rev
Log:
Fix the string for MVT::isVoid.
Modified:
llvm/trunk/utils/TableGen/CodeGenTarget.cpp
Modified: llvm/trunk/utils/TableGen/CodeGenTarget.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/CodeGenTarget.cpp?rev=55034&r1=55033&r2=55034&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/CodeGenTarget.cpp (original)
+++ llvm/trunk/utils/TableGen/CodeGenTarget.cpp Tue Aug 19 20:44:30 2008
@@ -50,7 +50,7 @@
case MVT::f128: return "MVT::f128";
case MVT::ppcf128: return "MVT::ppcf128";
case MVT::Flag: return "MVT::Flag";
- case MVT::isVoid:return "MVT::void";
+ case MVT::isVoid:return "MVT::isVoid";
case MVT::v8i8: return "MVT::v8i8";
case MVT::v4i16: return "MVT::v4i16";
case MVT::v2i32: return "MVT::v2i32";
More information about the llvm-commits
mailing list