mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-29 06:53:53 +00:00
fix pasto
llvm-svn: 81544
This commit is contained in:
parent
9584af22be
commit
4f048e3a67
@ -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