diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 19:28:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 19:28:59 +0000 |
commit | 4e4549deea3f484423fb8c8787a4abaae7825e95 (patch) | |
tree | 56f6524e3782d0352c937c88532ffcc1f942ae8d /llvm/lib/CodeGen | |
parent | a179b5236173e24eadc53adc97ca53610aff1680 (diff) | |
download | bcm5719-llvm-4e4549deea3f484423fb8c8787a4abaae7825e95.tar.gz bcm5719-llvm-4e4549deea3f484423fb8c8787a4abaae7825e95.zip |
resolve a fixme.
llvm-svn: 100346
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 5c63cf28821..26277652f14 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1350,12 +1350,7 @@ void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { /// GetTempSymbol - Return the MCSymbol corresponding to the assembler /// temporary label with the specified stem and unique ID. MCSymbol *AsmPrinter::GetTempSymbol(StringRef Name, unsigned ID) const { - // FIXME: REMOVE this. However, there is stuff in EH that passes counters in - // here that can be zero. - - //assert(ID && "Should use GetTempSymbol if no ID"); - if (ID == 0) return GetTempSymbol(Name); - return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix())+ + return OutContext.GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + Name + Twine(ID)); } |