[llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri May 19 14:30:09 PDT 2006



Changes in directory llvm/lib/VMCore:

AsmWriter.cpp updated: 1.198 -> 1.199
---
Log message:

Asmprint csret nicely


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

 AsmWriter.cpp |    1 +
 1 files changed, 1 insertion(+)


Index: llvm/lib/VMCore/AsmWriter.cpp
diff -u llvm/lib/VMCore/AsmWriter.cpp:1.198 llvm/lib/VMCore/AsmWriter.cpp:1.199
--- llvm/lib/VMCore/AsmWriter.cpp:1.198	Sun May 14 13:46:52 2006
+++ llvm/lib/VMCore/AsmWriter.cpp	Fri May 19 16:29:57 2006
@@ -953,6 +953,7 @@
   // Print the calling convention.
   switch (F->getCallingConv()) {
   case CallingConv::C: break;   // default
+  case CallingConv::CSRet: Out << "csretcc "; break;
   case CallingConv::Fast: Out << "fastcc "; break;
   case CallingConv::Cold: Out << "coldcc "; break;
   default: Out << "cc" << F->getCallingConv() << " "; break;






More information about the llvm-commits mailing list