mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 21:24:00 +00:00
Stop producing func.eh symbols on Darwin.
According Nick Kledzik (http://llvm.org/bugs/show_bug.cgi?id=19430#c2): "... mach-o no longer needs names in the __eh_frame section (and has not for years)." Iain Sandoe confirms it is also unnecessary for their old darwin support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211500 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -41,7 +41,6 @@ static bool useCompactUnwind(const Triple &T) {
|
||||
|
||||
void MCObjectFileInfo::InitMachOMCObjectFileInfo(Triple T) {
|
||||
// MachO
|
||||
IsFunctionEHFrameSymbolPrivate = false;
|
||||
SupportsWeakOmittedEHFrame = false;
|
||||
|
||||
if (T.isOSDarwin() &&
|
||||
@ -802,7 +801,6 @@ void MCObjectFileInfo::InitMCObjectFileInfo(StringRef T, Reloc::Model relocm,
|
||||
// Common.
|
||||
CommDirectiveSupportsAlignment = true;
|
||||
SupportsWeakOmittedEHFrame = true;
|
||||
IsFunctionEHFrameSymbolPrivate = true;
|
||||
SupportsCompactUnwindWithoutEHFrame = false;
|
||||
|
||||
PersonalityEncoding = LSDAEncoding = FDECFIEncoding = TTypeEncoding =
|
||||
|
Reference in New Issue
Block a user