mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80036 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2600ca8b3f
commit
415c8cf837
@ -283,10 +283,6 @@ namespace llvm {
|
|||||||
/// doesn't show up in the symbol table of the object file.
|
/// doesn't show up in the symbol table of the object file.
|
||||||
bool Is_EHSymbolPrivate; // Defaults to true.
|
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
|
/// GlobalEHDirective - This is the directive used to make exception frame
|
||||||
/// tables globally visible.
|
/// tables globally visible.
|
||||||
const char *GlobalEHDirective; // Defaults to NULL.
|
const char *GlobalEHDirective; // Defaults to NULL.
|
||||||
@ -502,9 +498,6 @@ namespace llvm {
|
|||||||
bool is_EHSymbolPrivate() const {
|
bool is_EHSymbolPrivate() const {
|
||||||
return Is_EHSymbolPrivate;
|
return Is_EHSymbolPrivate;
|
||||||
}
|
}
|
||||||
bool forceEncodingOfFDETo32Bits() const {
|
|
||||||
return ForceEncodingOfFDETo32Bits;
|
|
||||||
}
|
|
||||||
const char *getGlobalEHDirective() const {
|
const char *getGlobalEHDirective() const {
|
||||||
return GlobalEHDirective;
|
return GlobalEHDirective;
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,6 @@ MCAsmInfo::MCAsmInfo() {
|
|||||||
DwarfRequiresFrameSection = true;
|
DwarfRequiresFrameSection = true;
|
||||||
DwarfUsesInlineInfoSection = false;
|
DwarfUsesInlineInfoSection = false;
|
||||||
Is_EHSymbolPrivate = true;
|
Is_EHSymbolPrivate = true;
|
||||||
ForceEncodingOfFDETo32Bits = true;
|
|
||||||
GlobalEHDirective = 0;
|
GlobalEHDirective = 0;
|
||||||
SupportsWeakOmittedEHFrame = true;
|
SupportsWeakOmittedEHFrame = true;
|
||||||
DwarfSectionOffsetDirective = 0;
|
DwarfSectionOffsetDirective = 0;
|
||||||
|
@ -52,7 +52,6 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
|
|||||||
// doesn't hurt anything.
|
// doesn't hurt anything.
|
||||||
// FIXME: I need to get this from Triple.
|
// FIXME: I need to get this from Triple.
|
||||||
Is_EHSymbolPrivate = false;
|
Is_EHSymbolPrivate = false;
|
||||||
ForceEncodingOfFDETo32Bits = false;
|
|
||||||
GlobalEHDirective = "\t.globl\t";
|
GlobalEHDirective = "\t.globl\t";
|
||||||
SupportsWeakOmittedEHFrame = false;
|
SupportsWeakOmittedEHFrame = false;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user