[llvm] r363550 - AsmPrinter: add doc-string for EmitLinkage

Nicolai Haehnle via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 17 05:24:04 PDT 2019


Author: nha
Date: Mon Jun 17 05:24:04 2019
New Revision: 363550

URL: http://llvm.org/viewvc/llvm-project?rev=363550&view=rev
Log:
AsmPrinter: add doc-string for EmitLinkage

Change-Id: I376fcbd58f84a2aac6aaf744bc1665c92d312b25

Modified:
    llvm/trunk/include/llvm/CodeGen/AsmPrinter.h

Modified: llvm/trunk/include/llvm/CodeGen/AsmPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/AsmPrinter.h?rev=363550&r1=363549&r2=363550&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/AsmPrinter.h (original)
+++ llvm/trunk/include/llvm/CodeGen/AsmPrinter.h Mon Jun 17 05:24:04 2019
@@ -625,6 +625,8 @@ public:
   void EmitVisibility(MCSymbol *Sym, unsigned Visibility,
                       bool IsDefinition = true) const;
 
+  /// This emits linkage information about \p GVSym based on \p GV, if this is
+  /// supported by the target.
   void EmitLinkage(const GlobalValue *GV, MCSymbol *GVSym) const;
 
 private:




More information about the llvm-commits mailing list