1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

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.

llvm-svn: 80036
This commit is contained in:
Bill Wendling 2009-08-25 21:31:39 +00:00
parent 76dcbf3018
commit a6284af6bb
3 changed files with 0 additions and 9 deletions

View 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;
}

View File

@ -79,7 +79,6 @@ MCAsmInfo::MCAsmInfo() {
DwarfRequiresFrameSection = true;
DwarfUsesInlineInfoSection = false;
Is_EHSymbolPrivate = true;
ForceEncodingOfFDETo32Bits = true;
GlobalEHDirective = 0;
SupportsWeakOmittedEHFrame = true;
DwarfSectionOffsetDirective = 0;

View 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;