[llvm] r353352 - Remove reference to non-existent function. NFC.

Sam Clegg via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 6 16:11:43 PST 2019


Author: sbc
Date: Wed Feb  6 16:11:43 2019
New Revision: 353352

URL: http://llvm.org/viewvc/llvm-project?rev=353352&view=rev
Log:
Remove reference to non-existent function. NFC.

This comment is old. The code in question was removed in rL203174

Differential Revision: https://reviews.llvm.org/D57856

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp?rev=353352&r1=353351&r2=353352&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp Wed Feb  6 16:11:43 2019
@@ -1867,8 +1867,7 @@ bool AsmPrinter::EmitSpecialLLVMGlobal(c
 }
 
 /// EmitLLVMUsedList - For targets that define a MAI::UsedDirective, mark each
-/// global in the specified llvm.used list for which emitUsedDirectiveFor
-/// is true, as being used with this directive.
+/// global in the specified llvm.used list.
 void AsmPrinter::EmitLLVMUsedList(const ConstantArray *InitList) {
   // Should be an array of 'i8*'.
   for (unsigned i = 0, e = InitList->getNumOperands(); i != e; ++i) {




More information about the llvm-commits mailing list