diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-04-20 17:27:09 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-04-20 17:27:09 +0000 |
commit | c885165e664f3b465403e1b6ce57ba63f57c5f0c (patch) | |
tree | 023d820d0928c026d30d9375a52de53ed3679249 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | c4f718a3a7990a13888836902ecac034a9d6a235 (diff) |
Revise my previous change 68996 as suggested by Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 56706689fd..aaa39674d7 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -288,13 +288,12 @@ namespace ISD { // value as an integer 0/1 value. FGETSIGN, - /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a vector - /// with the specified, possibly variable, elements. The number of elements - /// is required to be a power of two. The types of the operands must - /// all be the same. They must match the vector element type, except if an - /// integer element type is not legal for the target, the operands may - /// be promoted to a legal type, in which case the operands are implicitly - /// truncated to the vector element types. + /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a vector with the + /// specified, possibly variable, elements. The number of elements is + /// required to be a power of two. The types of the operands must all be + /// the same and must match the vector element type, except that integer + /// types are allowed to be larger than the element type, in which case + /// the operands are implicitly truncated. BUILD_VECTOR, /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element |