summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/CodeGen/MachineDebugInfo.cpp6
-rw-r--r--llvm/lib/VMCore/IntrinsicInst.cpp5
2 files changed, 11 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineDebugInfo.cpp b/llvm/lib/CodeGen/MachineDebugInfo.cpp
index 97fecb482ba..706beb8a8c3 100644
--- a/llvm/lib/CodeGen/MachineDebugInfo.cpp
+++ b/llvm/lib/CodeGen/MachineDebugInfo.cpp
@@ -614,6 +614,12 @@ bool CompileUnitDesc::classof(const DebugInfoDesc *D) {
///
void CompileUnitDesc::ApplyToFields(DIVisitor *Visitor) {
AnchoredDesc::ApplyToFields(Visitor);
+
+ // Handle cases out of sync with compiler.
+ if (getVersion() == 0) {
+ unsigned DebugVersion;
+ Visitor->Apply(DebugVersion);
+ }
Visitor->Apply(Language);
Visitor->Apply(FileName);
diff --git a/llvm/lib/VMCore/IntrinsicInst.cpp b/llvm/lib/VMCore/IntrinsicInst.cpp
index 2f3ade34c13..9c2efc38816 100644
--- a/llvm/lib/VMCore/IntrinsicInst.cpp
+++ b/llvm/lib/VMCore/IntrinsicInst.cpp
@@ -29,6 +29,7 @@
#include "llvm/Constants.h"
#include "llvm/GlobalVariable.h"
+#include "llvm/CodeGen/MachineDebugInfo.h"
using namespace llvm;
@@ -59,12 +60,16 @@ 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");
GlobalVariable *GV = cast<GlobalVariable>(getContext());
ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
return CS->getOperand(3)->getStringValue();
}
std::string DbgStopPointInst::getDirectory() const {
+ // Once the operand indices are verified, update this assert
+ assert(LLVMDebugVersion == (4 << 16) && "Verify operand indices");
GlobalVariable *GV = cast<GlobalVariable>(getContext());
ConstantStruct *CS = cast<ConstantStruct>(GV->getInitializer());
return CS->getOperand(4)->getStringValue();
OpenPOWER on IntegriCloud