mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
* manually concatenate two string literals
* remove some dead code: darwin doesn't support dllimport linkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dda0f4cb79
commit
8529d28ee3
@ -52,7 +52,7 @@ void X86ATTAsmPrinter::PrintPICBaseSymbol() const {
|
||||
if (Subtarget->isTargetDarwin())
|
||||
O << "\"L" << getFunctionNumber() << "$pb\"";
|
||||
else if (Subtarget->isTargetELF())
|
||||
O << ".Lllvm$" << getFunctionNumber() << "." "$piclabel";
|
||||
O << ".Lllvm$" << getFunctionNumber() << ".$piclabel";
|
||||
else
|
||||
assert(0 && "Don't know how to print PIC label!\n");
|
||||
}
|
||||
@ -504,8 +504,6 @@ void X86ATTAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
|
||||
printSuffixedName(Name, "$non_lazy_ptr");
|
||||
}
|
||||
} else {
|
||||
if (GV->hasDLLImportLinkage())
|
||||
O << "__imp_";
|
||||
O << Name;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user