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

Chris Lattner lattner at cs.uiuc.edu
Sun Feb 8 15:47:28 PST 2004


Changes in directory llvm/lib/VMCore:

AsmWriter.cpp updated: 1.116 -> 1.117

---
Log message:

rename the "exceptional" destination of an invoke instruction to the 'unwind' dest


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

Index: llvm/lib/VMCore/AsmWriter.cpp
diff -u llvm/lib/VMCore/AsmWriter.cpp:1.116 llvm/lib/VMCore/AsmWriter.cpp:1.117
--- llvm/lib/VMCore/AsmWriter.cpp:1.116	Tue Jan 20 13:50:22 2004
+++ llvm/lib/VMCore/AsmWriter.cpp	Sun Feb  8 15:44:25 2004
@@ -895,7 +895,7 @@
     Out << " )\n\t\t\tto";
     writeOperand(II->getNormalDest(), true);
     Out << " except";
-    writeOperand(II->getExceptionalDest(), true);
+    writeOperand(II->getUnwindDest(), true);
 
   } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {
     Out << " ";





More information about the llvm-commits mailing list