[llvm-commits] CVS: llvm/utils/TableGen/IntrinsicEmitter.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 10 16:20:59 PST 2006



Changes in directory llvm/utils/TableGen:

IntrinsicEmitter.cpp updated: 1.5 -> 1.6
---
Log message:

fix pasto in generate assertion msg


---
Diffs of the changes:  (+1 -1)

 IntrinsicEmitter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/utils/TableGen/IntrinsicEmitter.cpp
diff -u llvm/utils/TableGen/IntrinsicEmitter.cpp:1.5 llvm/utils/TableGen/IntrinsicEmitter.cpp:1.6
--- llvm/utils/TableGen/IntrinsicEmitter.cpp:1.5	Thu Mar  9 16:37:52 2006
+++ llvm/utils/TableGen/IntrinsicEmitter.cpp	Fri Mar 10 18:20:47 2006
@@ -169,7 +169,7 @@
     for (unsigned j = 1; j != Ints[i].ArgTypes.size(); ++j)
       OS << "    Assert1(FTy->getParamType(" << j-1 << ")->getTypeID() == "
          << Ints[i].ArgTypes[j] << ",\n"
-         << "            \"Illegal result type!\", IF);\n";
+         << "            \"Illegal argument type!\", IF);\n";
     OS << "    break;\n";
   }
   OS << "  }\n";






More information about the llvm-commits mailing list