forked from OSchip/llvm-project
document these nodes, as they are nonobvious
llvm-svn: 21108
This commit is contained in:
parent
4fbb4af5d1
commit
9953d17a44
|
@ -90,7 +90,11 @@ namespace ISD {
|
|||
|
||||
|
||||
// Simple binary arithmetic operators.
|
||||
ADD, SUB, MUL, MULHU, MULHS, SDIV, UDIV, SREM, UREM,
|
||||
ADD, SUB, MUL, SDIV, UDIV, SREM, UREM,
|
||||
|
||||
// MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing
|
||||
// an unsigned/signed value of type i[2*n], then return the top part.
|
||||
MULHU, MULHS,
|
||||
|
||||
// Bitwise operators.
|
||||
AND, OR, XOR, SHL, SRA, SRL,
|
||||
|
|
Loading…
Reference in New Issue