mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
isPICStyleStub() is now never true in -static mode, so simplify code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75102 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15a380a035
commit
fb37d9561e
@ -286,10 +286,6 @@ static inline bool shouldPrintPLT(TargetMachine &TM, const X86Subtarget* ST) {
|
||||
return ST->isTargetELF() && TM.getRelocationModel() == Reloc::PIC_;
|
||||
}
|
||||
|
||||
static inline bool shouldPrintStub(TargetMachine &TM, const X86Subtarget* ST) {
|
||||
return ST->isPICStyleStub() && TM.getRelocationModel() != Reloc::Static;
|
||||
}
|
||||
|
||||
/// print_pcrel_imm - This is used to print an immediate value that ends up
|
||||
/// being encoded as a pc-relative value. These print slightly differently, for
|
||||
/// example, a $ is not emitted.
|
||||
@ -317,7 +313,7 @@ void X86ATTAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
|
||||
needCloseParen = true;
|
||||
}
|
||||
|
||||
if (shouldPrintStub(TM, Subtarget)) {
|
||||
if (Subtarget->isPICStyleStub()) {
|
||||
// DARWIN/X86-32 in != static mode.
|
||||
|
||||
// Link-once, declaration, or Weakly-linked global variables need
|
||||
@ -381,10 +377,9 @@ void X86ATTAsmPrinter::print_pcrel_imm(const MachineInstr *MI, unsigned OpNo) {
|
||||
std::string Name(TAI->getGlobalPrefix());
|
||||
Name += MO.getSymbolName();
|
||||
// Print function stub suffix unless it's Mac OS X 10.5 and up.
|
||||
if (shouldPrintStub(TM, Subtarget) &&
|
||||
if (Subtarget->isPICStyleStub() &&
|
||||
// DARWIN/X86-32 in != static mode.
|
||||
!(Subtarget->isTargetDarwin() && Subtarget->getDarwinVers() >= 9)) {
|
||||
|
||||
Subtarget->getDarwinVers() < 9) {
|
||||
FnStubs.insert(Name);
|
||||
printSuffixedName(Name, "$stub");
|
||||
return;
|
||||
@ -475,7 +470,7 @@ void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
||||
needCloseParen = true;
|
||||
}
|
||||
|
||||
if (shouldPrintStub(TM, Subtarget)) {
|
||||
if (Subtarget->isPICStyleStub()) {
|
||||
// DARWIN/X86-32 in != static mode.
|
||||
|
||||
// Link-once, declaration, or Weakly-linked global variables need
|
||||
|
Loading…
x
Reference in New Issue
Block a user