Add TAI field for exception table section.
[oota-llvm.git] / include / llvm / Target / TargetAsmInfo.h
index 75e797cd88a26c55ac876a41a90dfb2ef76a5aca..a109d77db654638d3c82e495abc7280c35a189c1 100644 (file)
@@ -313,6 +313,11 @@ namespace llvm {
     /// 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 @@ namespace llvm {
     const char *getDwarfEHFrameSection() const {
       return DwarfEHFrameSection;
     }
+    const char *getDwarfExceptionSection() const {
+      return DwarfExceptionSection;
+    }
     const char** getAsmCBE() const {
       return AsmTransCBE;
     }