[llvm] r333344 - Fix comment decribing setcccarry. NFC

Amaury Sechet via llvm-commits llvm-commits at lists.llvm.org
Sat May 26 07:40:42 PDT 2018


Author: deadalnix
Date: Sat May 26 07:40:42 2018
New Revision: 333344

URL: http://llvm.org/viewvc/llvm-project?rev=333344&view=rev
Log:
Fix comment decribing setcccarry. NFC

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

Modified: llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h?rev=333344&r1=333343&r2=333344&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/ISDOpcodes.h Sat May 26 07:40:42 2018
@@ -424,7 +424,8 @@ namespace ISD {
     /// Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but
     /// op #2 is a boolean indicating if there is an incoming carry. This
     /// operator checks the result of "LHS - RHS - Carry", and can be used to
-    /// compare two wide integers: (setcce lhshi rhshi (subc lhslo rhslo) cc).
+    /// compare two wide integers:
+    /// (setcccarry lhshi rhshi (subcarry lhslo rhslo) cc).
     /// Only valid for integers.
     SETCCCARRY,
 




More information about the llvm-commits mailing list