summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/IntrinsicInst.cpp
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2008-12-19 19:56:36 +0000
committerJohn Criswell <criswell@uiuc.edu>2008-12-19 19:56:36 +0000
commit8dd90a72458244e262ac0ea42890afe5a92ff0c1 (patch)
treea9f23c1422fac3b3ba2ffbf5ce25f5c8a5819fe1 /llvm/lib/VMCore/IntrinsicInst.cpp
parent6ab9978b66471951acbbd5d59ae97c97f6575c95 (diff)
downloadbcm5719-llvm-8dd90a72458244e262ac0ea42890afe5a92ff0c1.tar.gz
bcm5719-llvm-8dd90a72458244e262ac0ea42890afe5a92ff0c1.zip
The fields for the stoppoint debug intrinsic have not changed, so update the
version number assertions. llvm-svn: 61257
Diffstat (limited to 'llvm/lib/VMCore/IntrinsicInst.cpp')
-rw-r--r--llvm/lib/VMCore/IntrinsicInst.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/IntrinsicInst.cpp b/llvm/lib/VMCore/IntrinsicInst.cpp
index c440275fc3a..8bdc96896c5 100644
--- a/llvm/lib/VMCore/IntrinsicInst.cpp
+++ b/llvm/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());
OpenPOWER on IntegriCloud