From: John Criswell Date: Fri, 19 Dec 2008 19:56:36 +0000 (+0000) Subject: The fields for the stoppoint debug intrinsic have not changed, so update the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=de8c611c089d4c6327721367f3ed23b496692478;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/IntrinsicInst.cpp b/lib/VMCore/IntrinsicInst.cpp index c440275fc3a..8bdc96896c5 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(getContext()); if (!GV->hasInitializer()) return NULL; ConstantStruct *CS = cast(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(getContext()); if (!GV->hasInitializer()) return NULL; ConstantStruct *CS = cast(GV->getInitializer());