Revert last patch. We need to put this into TargetLowering. There will be a lot
authorBill Wendling <isanbard@gmail.com>
Tue, 25 Aug 2009 21:31:39 +0000 (21:31 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 25 Aug 2009 21:31:39 +0000 (21:31 +0000)
of EH stuff going into there, so we can wait to add them all then.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80036 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCAsmInfo.h
lib/MC/MCAsmInfo.cpp
lib/MC/MCAsmInfoDarwin.cpp

index b0ba812ec5ac7ee3b08aad8b0996b7519819026f..a3959e504cd6ccc2ceb581ad8b3b0af9d18c2af5 100644 (file)
@@ -283,10 +283,6 @@ namespace llvm {
     /// doesn't show up in the symbol table of the object file.
     bool Is_EHSymbolPrivate;                 // Defaults to true.
 
-    /// ForceEncodingOfFDETo32Bits - If set, the encoding of some of the FDE
-    /// data is forced to 32-bit.
-    bool ForceEncodingOfFDETo32Bits;         // Defaults to true.
-
     /// GlobalEHDirective - This is the directive used to make exception frame
     /// tables globally visible.
     const char *GlobalEHDirective;           // Defaults to NULL.
@@ -502,9 +498,6 @@ namespace llvm {
     bool is_EHSymbolPrivate() const {
       return Is_EHSymbolPrivate;
     }
-    bool forceEncodingOfFDETo32Bits() const {
-      return ForceEncodingOfFDETo32Bits;
-    }
     const char *getGlobalEHDirective() const {
       return GlobalEHDirective;
     }
index 9b21100ce42afbed3fa802768b287f15eae64230..65625608f024ce4b532c9bc587a3742b22ca80a7 100644 (file)
@@ -79,7 +79,6 @@ MCAsmInfo::MCAsmInfo() {
   DwarfRequiresFrameSection = true;
   DwarfUsesInlineInfoSection = false;
   Is_EHSymbolPrivate = true;
-  ForceEncodingOfFDETo32Bits = true;
   GlobalEHDirective = 0;
   SupportsWeakOmittedEHFrame = true;
   DwarfSectionOffsetDirective = 0;
index e2069b0038dc9398064d12b96b1b3d211298a0f7..38b9e5b90b5f73da73ac21dae073df2f8e5c238b 100644 (file)
@@ -52,7 +52,6 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
   // doesn't hurt anything.
   // FIXME: I need to get this from Triple.
   Is_EHSymbolPrivate = false;
-  ForceEncodingOfFDETo32Bits = false;
   GlobalEHDirective = "\t.globl\t";
   SupportsWeakOmittedEHFrame = false;