[llvm-commits] CVS: llvm/lib/VMCore/IntrinsicInst.cpp
Jim Laskey
jlaskey at apple.com
Tue Jul 11 08:58:23 PDT 2006
Changes in directory llvm/lib/VMCore:
IntrinsicInst.cpp updated: 1.8 -> 1.9
---
Log message:
1. Support for c++ mangled names.
2. Support for private/protected class members.
---
Diffs of the changes: (+2 -2)
IntrinsicInst.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/VMCore/IntrinsicInst.cpp
diff -u llvm/lib/VMCore/IntrinsicInst.cpp:1.8 llvm/lib/VMCore/IntrinsicInst.cpp:1.9
--- llvm/lib/VMCore/IntrinsicInst.cpp:1.8 Mon Jun 19 07:54:15 2006
+++ llvm/lib/VMCore/IntrinsicInst.cpp Tue Jul 11 10:58:09 2006
@@ -61,7 +61,7 @@
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::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();
More information about the llvm-commits
mailing list