1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00

Correct a comment.

llvm-svn: 37058
This commit is contained in:
Dan Gohman 2007-05-15 00:20:13 +00:00
parent dfc6f4a06c
commit b0fd1c9640

View File

@ -302,7 +302,7 @@ namespace ISD {
/// Simple abstract vector operators. Unlike the integer and floating point
/// binary operators, these nodes also take two additional operands:
/// a constant element count, and a value type node indicating the type of
/// the elements. The order is count, type, op0, op1. All vector opcodes,
/// the elements. The order is op0, op1, count, type. All vector opcodes,
/// including VLOAD and VConstant must currently have count and type as
/// their last two operands.
VADD, VSUB, VMUL, VSDIV, VUDIV,