document these nodes, as they are nonobvious

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21108 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2005-04-06 04:21:29 +00:00
parent 8db0af1c8d
commit bede0b7dd7

View File

@@ -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,