From 5fed164d7002f93fbe46c9e4b6d5c055a4635cb4 Mon Sep 17 00:00:00 2001 From: Jim Laskey Date: Wed, 13 Dec 2006 17:49:24 +0000 Subject: [PATCH] Update version in safe guards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32546 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/IntrinsicInst.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/VMCore/IntrinsicInst.cpp b/lib/VMCore/IntrinsicInst.cpp index 84addcc0aa9..dbd3c8caa61 100644 --- a/lib/VMCore/IntrinsicInst.cpp +++ b/lib/VMCore/IntrinsicInst.cpp @@ -59,7 +59,7 @@ Value *DbgInfoIntrinsic::StripCast(Value *C) { 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(getContext()); if (!GV->hasInitializer()) return ""; ConstantStruct *CS = cast(GV->getInitializer()); @@ -68,7 +68,7 @@ std::string DbgStopPointInst::getFileName() const { 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(getContext()); if (!GV->hasInitializer()) return ""; ConstantStruct *CS = cast(GV->getInitializer());