Revert last patch. We need to put this into TargetLowering. There will be a lot
[oota-llvm.git] / include / llvm / MC / MCAsmInfo.h
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;
     }