diff options
| author | Amaury Sechet <deadalnix@gmail.com> | 2018-05-26 14:40:42 +0000 |
|---|---|---|
| committer | Amaury Sechet <deadalnix@gmail.com> | 2018-05-26 14:40:42 +0000 |
| commit | 0efdcdfbfcf8a99a14549f28bc4bf1a2815b950d (patch) | |
| tree | a4d8323a02b1140e59f0c61bcf5867041dbc4dc2 | |
| parent | 81cc13258a971fee62ceef9e426e1c12f5371963 (diff) | |
| download | bcm5719-llvm-0efdcdfbfcf8a99a14549f28bc4bf1a2815b950d.tar.gz bcm5719-llvm-0efdcdfbfcf8a99a14549f28bc4bf1a2815b950d.zip | |
Fix comment decribing setcccarry. NFC
llvm-svn: 333344
| -rw-r--r-- | llvm/include/llvm/CodeGen/ISDOpcodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/ISDOpcodes.h b/llvm/include/llvm/CodeGen/ISDOpcodes.h index 4a516cd6efe..df0dcb1cf04 100644 --- a/llvm/include/llvm/CodeGen/ISDOpcodes.h +++ b/llvm/include/llvm/CodeGen/ISDOpcodes.h @@ -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, |

