fix pasto

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-09-11 18:33:44 +00:00
parent c6f9d62eae
commit 24729e8e1b

View File

@ -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();