[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h
Jim Laskey
jlaskey at apple.com
Wed Feb 21 14:43:59 PST 2007
Changes in directory llvm/include/llvm/Target:
TargetAsmInfo.h updated: 1.25 -> 1.26
---
Log message:
Add TAI field for exception table section.
---
Diffs of the changes: (+8 -0)
TargetAsmInfo.h | 8 ++++++++
1 files changed, 8 insertions(+)
Index: llvm/include/llvm/Target/TargetAsmInfo.h
diff -u llvm/include/llvm/Target/TargetAsmInfo.h:1.25 llvm/include/llvm/Target/TargetAsmInfo.h:1.26
--- llvm/include/llvm/Target/TargetAsmInfo.h:1.25 Thu Feb 1 10:31:34 2007
+++ llvm/include/llvm/Target/TargetAsmInfo.h Wed Feb 21 16:43:40 2007
@@ -313,6 +313,11 @@
/// DwarfEHFrameSection - Section directive for Exception frames.
///
const char *DwarfEHFrameSection; // Defaults to ".eh_frame".
+
+ /// DwarfExceptionSection - Section directive for Exception table.
+ ///
+ const char *DwarfExceptionSection; // Defaults to ".gcc_except_table".
+
//===--- CBE Asm Translation Table -----------------------------------===//
@@ -540,6 +545,9 @@
const char *getDwarfEHFrameSection() const {
return DwarfEHFrameSection;
}
+ const char *getDwarfExceptionSection() const {
+ return DwarfExceptionSection;
+ }
const char** getAsmCBE() const {
return AsmTransCBE;
}
More information about the llvm-commits
mailing list