change FnStubs from being a StringMap<std::string> to being a much
authorChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 06:36:33 +0000 (06:36 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 06:36:33 +0000 (06:36 +0000)
commit2a3c20bf269c3adef88e16902c041819eea04183
tree167f56d47e220a91ea12162ca7d6c0b347bc9c87
parent3e6bf2de16525a306998658ecf136f9dce316341
change FnStubs from being a StringMap<std::string> to being a much
more efficient SmallPtrSet<MCSymbol*>.  This eliminates string
craziness and fixes CodeGen/X86/darwin-quote.ll with the new asmprinter.

Codegen is producing stubs in a nondeterminstic order, but it was doing
this before anyway.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81511 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.h
lib/Target/X86/AsmPrinter/X86MCInstLower.cpp