summaryrefslogtreecommitdiff
path: root/lib/VMCore/IntrinsicInst.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-07-11 15:58:09 +0000
committerJim Laskey <jlaskey@mac.com>2006-07-11 15:58:09 +0000
commite2a78f2e3dcea4a087fd776aefc56e9edef840a9 (patch)
treece0350e6e5ab55986917806c5cf1def26c74c555 /lib/VMCore/IntrinsicInst.cpp
parenta4e64359aafaf23e440e9dc171859daef1995f1b (diff)
downloadllvm-e2a78f2e3dcea4a087fd776aefc56e9edef840a9.tar.gz
llvm-e2a78f2e3dcea4a087fd776aefc56e9edef840a9.tar.bz2
llvm-e2a78f2e3dcea4a087fd776aefc56e9edef840a9.tar.xz
1. Support for c++ mangled names.
2. Support for private/protected class members. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29104 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/IntrinsicInst.cpp')
-rw-r--r--lib/VMCore/IntrinsicInst.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/IntrinsicInst.cpp b/lib/VMCore/IntrinsicInst.cpp
index 9c2efc3881..a85d9a4b22 100644
--- a/lib/VMCore/IntrinsicInst.cpp
+++ b/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();