mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
remove dead argument
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
31530617dd
commit
7af485e109
@ -1089,10 +1089,9 @@ void X86ATTAsmPrinter::printGVStub(const char *GV, const char *Prefix) {
|
|||||||
|
|
||||||
/// printHiddenGVStub - Print stub for a hidden global value.
|
/// printHiddenGVStub - Print stub for a hidden global value.
|
||||||
///
|
///
|
||||||
void X86ATTAsmPrinter::printHiddenGVStub(const char *GV, const char *Prefix) {
|
void X86ATTAsmPrinter::printHiddenGVStub(const char *GV) {
|
||||||
EmitAlignment(2);
|
EmitAlignment(2);
|
||||||
printSuffixedName(GV, "$non_lazy_ptr", Prefix);
|
printSuffixedName(GV, "$non_lazy_ptr");
|
||||||
if (Prefix) O << Prefix;
|
|
||||||
O << ":\n" << TAI->getData32bitsDirective() << GV << '\n';
|
O << ":\n" << TAI->getData32bitsDirective() << GV << '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@ class VISIBILITY_HIDDEN X86ATTAsmPrinter : public AsmPrinter {
|
|||||||
void printModuleLevelGV(const GlobalVariable* GVar);
|
void printModuleLevelGV(const GlobalVariable* GVar);
|
||||||
|
|
||||||
void printGVStub(const char *GV, const char *Prefix = NULL);
|
void printGVStub(const char *GV, const char *Prefix = NULL);
|
||||||
void printHiddenGVStub(const char *GV, const char *Prefix = NULL);
|
void printHiddenGVStub(const char *GV);
|
||||||
|
|
||||||
bool runOnMachineFunction(MachineFunction &F);
|
bool runOnMachineFunction(MachineFunction &F);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user