diff options
| author | Jim Laskey <jlaskey@mac.com> | 2006-12-13 17:49:24 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2006-12-13 17:49:24 +0000 |
| commit | b6cdf465c2701a71a9bc1bbce2cc954130e2ad0f (patch) | |
| tree | c49f88b7d9eb4a78144322479a61620754753353 | |
| parent | e612d336d905e1ddb1a18eb5b43f887461506459 (diff) | |
| download | bcm5719-llvm-b6cdf465c2701a71a9bc1bbce2cc954130e2ad0f.tar.gz bcm5719-llvm-b6cdf465c2701a71a9bc1bbce2cc954130e2ad0f.zip | |
Update version in safe guards.
llvm-svn: 32546
| -rw-r--r-- | llvm/lib/VMCore/IntrinsicInst.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/IntrinsicInst.cpp b/llvm/lib/VMCore/IntrinsicInst.cpp index 84addcc0aa9..dbd3c8caa61 100644 --- a/llvm/lib/VMCore/IntrinsicInst.cpp +++ b/llvm/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<GlobalVariable>(getContext()); if (!GV->hasInitializer()) return ""; ConstantStruct *CS = cast<ConstantStruct>(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<GlobalVariable>(getContext()); if (!GV->hasInitializer()) return ""; ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer()); |

