diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-25 22:59:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-25 22:59:28 +0000 |
commit | 452e8354d58960289aae610fa265ee69431b6b83 (patch) | |
tree | bb2276ae6b166f9e09c629351b665f8ca0d10cb2 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 61d4399dfc7046595e30ad34a28c72a885cb8100 (diff) |
Fix a bug in ISD::isBuildVectorAllOnesInteger that caused it to always return
false
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 9fcfc61af7..18e2ebcb45 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -86,12 +86,13 @@ bool ISD::isBuildVectorAllOnesInteger(const SDNode *N) { // Do not accept build_vectors that aren't all constants or which have non-~0 // elements. - if (!isa<ConstantSDNode>(N) || !cast<ConstantSDNode>(N)->isAllOnesValue()) + SDOperand NotZero = N->getOperand(i); + if (!isa<ConstantSDNode>(NotZero) || + !cast<ConstantSDNode>(NotZero)->isAllOnesValue()) return false; // Okay, we have at least one ~0 value, check to see if the rest match or are // undefs. - SDOperand NotZero = N->getOperand(i); for (++i; i != e; ++i) if (N->getOperand(i) != NotZero && N->getOperand(i).getOpcode() != ISD::UNDEF) |