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

Jim Laskey jlaskey at apple.com
Wed Dec 13 09:49:39 PST 2006



Changes in directory llvm/lib/VMCore:

IntrinsicInst.cpp updated: 1.11 -> 1.12
---
Log message:

Update version in safe guards.

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

 IntrinsicInst.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/VMCore/IntrinsicInst.cpp
diff -u llvm/lib/VMCore/IntrinsicInst.cpp:1.11 llvm/lib/VMCore/IntrinsicInst.cpp:1.12
--- llvm/lib/VMCore/IntrinsicInst.cpp:1.11	Sun Nov 26 19:05:10 2006
+++ llvm/lib/VMCore/IntrinsicInst.cpp	Wed Dec 13 11:49:24 2006
@@ -59,7 +59,7 @@
 
 std::string DbgStopPointInst::getFileName() const {
   // Once the operand indices are verified, update this assert
-  assert(LLVMDebugVersion == (5 << 16) && "Verify operand indices");
+  assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
   GlobalVariable *GV = cast<GlobalVariable>(getContext());
   if (!GV->hasInitializer()) return "";
   ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
@@ -68,7 +68,7 @@
 
 std::string DbgStopPointInst::getDirectory() const {
   // Once the operand indices are verified, update this assert
-  assert(LLVMDebugVersion == (5 << 16) && "Verify operand indices");
+  assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
   GlobalVariable *GV = cast<GlobalVariable>(getContext());
   if (!GV->hasInitializer()) return "";
   ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());






More information about the llvm-commits mailing list