[llvm] r364687 - [x86] remove stale comment about cmov; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 28 14:45:56 PDT 2019


Author: spatel
Date: Fri Jun 28 14:45:55 2019
New Revision: 364687

URL: http://llvm.org/viewvc/llvm-project?rev=364687&view=rev
Log:
[x86] remove stale comment about cmov; NFC

The cmov node used to sometimes return a glue result (and that's what
'flag' meant in this context), but that was removed with D38664.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.h

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.h?rev=364687&r1=364686&r2=364687&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.h (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.h Fri Jun 28 14:45:55 2019
@@ -105,8 +105,7 @@ namespace llvm {
 
       /// X86 conditional moves. Operand 0 and operand 1 are the two values
       /// to select from. Operand 2 is the condition code, and operand 3 is the
-      /// flag operand produced by a CMP or TEST instruction. It also writes a
-      /// flag result.
+      /// flag operand produced by a CMP or TEST instruction.
       CMOV,
 
       /// X86 conditional branches. Operand 0 is the chain operand, operand 1




More information about the llvm-commits mailing list