[llvm-commits] [llvm] r61257 - /llvm/trunk/lib/VMCore/IntrinsicInst.cpp
John Criswell
criswell at uiuc.edu
Fri Dec 19 11:56:38 PST 2008
Author: criswell
Date: Fri Dec 19 13:56:36 2008
New Revision: 61257
URL: http://llvm.org/viewvc/llvm-project?rev=61257&view=rev
Log:
The fields for the stoppoint debug intrinsic have not changed, so update the
version number assertions.
Modified:
llvm/trunk/lib/VMCore/IntrinsicInst.cpp
Modified: llvm/trunk/lib/VMCore/IntrinsicInst.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/IntrinsicInst.cpp?rev=61257&r1=61256&r2=61257&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/IntrinsicInst.cpp (original)
+++ llvm/trunk/lib/VMCore/IntrinsicInst.cpp Fri Dec 19 13:56:36 2008
@@ -60,7 +60,7 @@
Value *DbgStopPointInst::getFileName() const {
// Once the operand indices are verified, update this assert
- assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
+ assert(LLVMDebugVersion == (7 << 16) && "Verify operand indices");
GlobalVariable *GV = cast<GlobalVariable>(getContext());
if (!GV->hasInitializer()) return NULL;
ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
@@ -69,7 +69,7 @@
Value *DbgStopPointInst::getDirectory() const {
// Once the operand indices are verified, update this assert
- assert(LLVMDebugVersion == (6 << 16) && "Verify operand indices");
+ assert(LLVMDebugVersion == (7 << 16) && "Verify operand indices");
GlobalVariable *GV = cast<GlobalVariable>(getContext());
if (!GV->hasInitializer()) return NULL;
ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
More information about the llvm-commits
mailing list