diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-07-11 15:58:09 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-07-11 15:58:09 +0000 |
commit | 6c72aa7411eff2a12841ec17e4c4ac4eb79453d1 (patch) | |
tree | c68911940bfb7c7c55cabeaa3ccf2eb984652062 /llvm/lib/VMCore/IntrinsicInst.cpp | |
parent | 185c5c2bdf0e50b3520a3029a437ff75a412eb7b (diff) | |
download | bcm5719-llvm-6c72aa7411eff2a12841ec17e4c4ac4eb79453d1.tar.gz bcm5719-llvm-6c72aa7411eff2a12841ec17e4c4ac4eb79453d1.zip |
1. Support for c++ mangled names.
2. Support for private/protected class members.
llvm-svn: 29104
Diffstat (limited to 'llvm/lib/VMCore/IntrinsicInst.cpp')
-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 9c2efc38816..a85d9a4b223 100644 --- a/llvm/lib/VMCore/IntrinsicInst.cpp +++ b/llvm/lib/VMCore/IntrinsicInst.cpp @@ -61,7 +61,7 @@ Value *DbgInfoIntrinsic::StripCast(Value *C) { std::string DbgStopPointInst::getFileName() const { // Once the operand indices are verified, update this assert - assert(LLVMDebugVersion == (4 << 16) && "Verify operand indices"); + assert(LLVMDebugVersion == (5 << 16) && "Verify operand indices"); GlobalVariable *GV = cast<GlobalVariable>(getContext()); ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer()); return CS->getOperand(3)->getStringValue(); @@ -69,7 +69,7 @@ std::string DbgStopPointInst::getFileName() const { std::string DbgStopPointInst::getDirectory() const { // Once the operand indices are verified, update this assert - assert(LLVMDebugVersion == (4 << 16) && "Verify operand indices"); + assert(LLVMDebugVersion == (5 << 16) && "Verify operand indices"); GlobalVariable *GV = cast<GlobalVariable>(getContext()); ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer()); return CS->getOperand(4)->getStringValue(); |