mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 19:20:23 +00:00
fix pasto
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c6f9d62eae
commit
24729e8e1b
@ -964,7 +964,7 @@ bool X86ATTAsmPrinter::doFinalization(Module &M) {
|
||||
OutStreamer.SwitchSection(TheSection);
|
||||
|
||||
std::vector<std::pair<MCSymbol*, MCSymbol*> > Stubs
|
||||
= GetSortedStubs(FnStubs);
|
||||
= GetSortedStubs(GVStubs);
|
||||
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
||||
Stubs[i].first->print(O, MAI);
|
||||
O << ":\n\t.indirect_symbol ";
|
||||
@ -978,7 +978,7 @@ bool X86ATTAsmPrinter::doFinalization(Module &M) {
|
||||
EmitAlignment(2);
|
||||
|
||||
std::vector<std::pair<MCSymbol*, MCSymbol*> > Stubs
|
||||
= GetSortedStubs(FnStubs);
|
||||
= GetSortedStubs(HiddenGVStubs);
|
||||
for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
||||
Stubs[i].first->print(O, MAI);
|
||||
O << ":\n" << MAI->getData32bitsDirective();
|
||||
|
Loading…
Reference in New Issue
Block a user