mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-30 20:24:32 +00:00
MC: Remove obsolete MachO UseAggressiveSymbolFolding.
Fix the FIXME and remove this old as(1) compat option. It was useful for bringup of the integrated assembler to diff object files, but now it's just causing more relocations than strictly necessary to be generated. rdar://21201804 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239084 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -11,12 +11,9 @@
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
MCMachObjectTargetWriter::MCMachObjectTargetWriter(
|
||||
bool Is64Bit_, uint32_t CPUType_, uint32_t CPUSubtype_,
|
||||
bool UseAggressiveSymbolFolding_)
|
||||
: Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_),
|
||||
UseAggressiveSymbolFolding(UseAggressiveSymbolFolding_) {
|
||||
}
|
||||
MCMachObjectTargetWriter::MCMachObjectTargetWriter(bool Is64Bit_,
|
||||
uint32_t CPUType_,
|
||||
uint32_t CPUSubtype_)
|
||||
: Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {}
|
||||
|
||||
MCMachObjectTargetWriter::~MCMachObjectTargetWriter() {
|
||||
}
|
||||
MCMachObjectTargetWriter::~MCMachObjectTargetWriter() {}
|
||||
|
Reference in New Issue
Block a user