diff options
author | John Criswell <criswell@uiuc.edu> | 2008-12-19 19:56:36 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2008-12-19 19:56:36 +0000 |
commit | ed0deeff2db24d32ffd6a2b676d93950d399834d (patch) | |
tree | 34c91e4045a754ea073cdfc8ab4707e2888a4416 /lib/VMCore/IntrinsicInst.cpp | |
parent | bdf7dd44c06de284c3d47dc9276fe715e61cf5df (diff) | |
download | external_llvm-ed0deeff2db24d32ffd6a2b676d93950d399834d.zip external_llvm-ed0deeff2db24d32ffd6a2b676d93950d399834d.tar.gz external_llvm-ed0deeff2db24d32ffd6a2b676d93950d399834d.tar.bz2 |
The fields for the stoppoint debug intrinsic have not changed, so update the
version number assertions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61257 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/IntrinsicInst.cpp')
-rw-r--r-- | lib/VMCore/IntrinsicInst.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/IntrinsicInst.cpp b/lib/VMCore/IntrinsicInst.cpp index c440275..8bdc968 100644 --- a/lib/VMCore/IntrinsicInst.cpp +++ b/lib/VMCore/IntrinsicInst.cpp @@ -60,7 +60,7 @@ Value *DbgInfoIntrinsic::StripCast(Value *C) { 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::getFileName() const { 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()); |