[llvm] r366724 - [PowerPC] Fix comment on MO_PLT Target Operand Flag. [NFC]

Sean Fertile via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 22 11:47:59 PDT 2019


Author: sfertile
Date: Mon Jul 22 11:47:59 2019
New Revision: 366724

URL: http://llvm.org/viewvc/llvm-project?rev=366724&view=rev
Log:
[PowerPC] Fix comment on MO_PLT Target Operand Flag. [NFC]

Patch by Xiangling Liao.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPC.h

Modified: llvm/trunk/lib/Target/PowerPC/PPC.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPC.h?rev=366724&r1=366723&r2=366724&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPC.h (original)
+++ llvm/trunk/lib/Target/PowerPC/PPC.h Mon Jul 22 11:47:59 2019
@@ -86,8 +86,8 @@ namespace llvm {
     MO_NO_FLAG,
 
     /// On a symbol operand "FOO", this indicates that the reference is actually
-    /// to "FOO at plt".  This is used for calls and jumps to external functions on
-    /// for PIC calls on Linux and ELF systems.
+    /// to "FOO at plt".  This is used for calls and jumps to external functions
+    /// and for PIC calls on 32-bit ELF systems.
     MO_PLT = 1,
 
     /// MO_PIC_FLAG - If this bit is set, the symbol reference is relative to




More information about the llvm-commits mailing list