aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-08-25 21:31:39 +0000
committerBill Wendling <isanbard@gmail.com>2009-08-25 21:31:39 +0000
commit415c8cf837439401f2df75d992d7e296d1d6746a (patch)
treede5111973380262456f02264269e7f829bb4a98d
parent2600ca8b3f3602d0904289eeed3d26f3d7aad2ae (diff)
downloadexternal_llvm-415c8cf837439401f2df75d992d7e296d1d6746a.zip
external_llvm-415c8cf837439401f2df75d992d7e296d1d6746a.tar.gz
external_llvm-415c8cf837439401f2df75d992d7e296d1d6746a.tar.bz2
Revert last patch. We need to put this into TargetLowering. There will be a lot
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
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
-rw-r--r--lib/MC/MCAsmInfo.cpp1
-rw-r--r--lib/MC/MCAsmInfoDarwin.cpp1
3 files changed, 0 insertions, 9 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index b0ba812..a3959e5 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -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;
}
diff --git a/lib/MC/MCAsmInfo.cpp b/lib/MC/MCAsmInfo.cpp
index 9b21100..6562560 100644
--- a/lib/MC/MCAsmInfo.cpp
+++ b/lib/MC/MCAsmInfo.cpp
@@ -79,7 +79,6 @@ MCAsmInfo::MCAsmInfo() {
DwarfRequiresFrameSection = true;
DwarfUsesInlineInfoSection = false;
Is_EHSymbolPrivate = true;
- ForceEncodingOfFDETo32Bits = true;
GlobalEHDirective = 0;
SupportsWeakOmittedEHFrame = true;
DwarfSectionOffsetDirective = 0;
diff --git a/lib/MC/MCAsmInfoDarwin.cpp b/lib/MC/MCAsmInfoDarwin.cpp
index e2069b0..38b9e5b 100644
--- a/lib/MC/MCAsmInfoDarwin.cpp
+++ b/lib/MC/MCAsmInfoDarwin.cpp
@@ -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;