diff options
author | Sam Clegg <sbc@chromium.org> | 2019-02-07 00:11:43 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2019-02-07 00:11:43 +0000 |
commit | 1e71b04af670d45eec2b558f1d2f863af2ced558 (patch) | |
tree | f039dc9c27584a2e0b1f191e6d8dc1feb1bf56ad /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | eb7031ecf6beabb2128db78614f0c9777990fe6f (diff) | |
download | bcm5719-llvm-1e71b04af670d45eec2b558f1d2f863af2ced558.tar.gz bcm5719-llvm-1e71b04af670d45eec2b558f1d2f863af2ced558.zip |
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
llvm-svn: 353352
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 619f706ec62..7b4679e1f17 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1867,8 +1867,7 @@ bool AsmPrinter::EmitSpecialLLVMGlobal(const GlobalVariable *GV) { } /// 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) { |