change FnStubs from being a StringMap<std::string> to being a much
commit25c61740e62d7ea5191b0d81da96102a266ef6c7
authorChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 06:36:33 +0000 (11 06:36 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 11 Sep 2009 06:36:33 +0000 (11 06:36 +0000)
tree167f56d47e220a91ea12162ca7d6c0b347bc9c87
parent2fdf82ddf5816c13fe660d6309e1e09c1550e6df
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