Displaying 1 result from an estimated 1 matches for "e7e0550".
Did you mean:
370550
2014 Sep 03
2
[LLVMdev] Enable debug for MSP430
...SupportsDebugInformation = true;
}
does, indeed enable debug - but NOT .debug_frame (and IIRC some of the variable range info goes missing).
it needs:
diff --git a/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp b/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
index df1aa1a..e7e0550 100644
--- a/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
+++ b/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
@@ -24,4 +24,7 @@ MSP430MCAsmInfo::MSP430MCAsmInfo(StringRef TT) {
AlignmentIsInBytes = false;
UsesELFSectionDirectiveForBSS = true;
+
+ SupportsDebugInformati...