From: Dan Gohman Date: Fri, 6 Jul 2007 13:27:33 +0000 (+0000) Subject: Fix a comment so that the element numbering match the actual element X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=664e9546d674096c5a012536f1a424b1681ece51;p=oota-llvm.git Fix a comment so that the element numbering match the actual element operand numbering. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37944 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index a85ec039871..c370b50b3e5 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -239,7 +239,7 @@ namespace ISD { // FCOPYSIGN(f32, f64) is allowed. FCOPYSIGN, - /// BUILD_VECTOR(ELT1, ELT2, ELT3, ELT4,...) - Return a vector + /// 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. BUILD_VECTOR,