From: Rafael Espindola Date: Tue, 17 Mar 2015 14:06:24 +0000 (+0000) Subject: Don't duplicate comment from the .h. NFC. X-Git-Tag: android-x86-7.1-r4~50284 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e5033791962129f0f32c9f5201cd5142a214651e;p=android-x86%2Fexternal-llvm.git Don't duplicate comment from the .h. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232476 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 5b4a5cc644d..ad2c6f4068b 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -2250,16 +2250,12 @@ void AsmPrinter::printOffset(int64_t Offset, raw_ostream &OS) const { // Symbol Lowering Routines. //===----------------------------------------------------------------------===// -/// GetTempSymbol - Return the MCSymbol corresponding to the assembler -/// temporary label with the specified stem and unique ID. MCSymbol *AsmPrinter::GetTempSymbol(const Twine &Name, unsigned ID) const { const DataLayout *DL = TM.getDataLayout(); return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix()) + Name + Twine(ID)); } -/// GetTempSymbol - Return an assembler temporary label with the specified -/// stem. MCSymbol *AsmPrinter::GetTempSymbol(const Twine &Name) const { const DataLayout *DL = TM.getDataLayout(); return OutContext.GetOrCreateSymbol(Twine(DL->getPrivateGlobalPrefix())+