commit | 9625702063cf928113ec583461fcbe9c16b0fac5 | [log] [tgz] |
---|---|---|
author | Kalle Raiskila <kalle.raiskila@nokia.com> | Mon Jun 21 14:42:19 2010 +0000 |
committer | Kalle Raiskila <kalle.raiskila@nokia.com> | Mon Jun 21 14:42:19 2010 +0000 |
tree | ce2d52a830da82a78666501fe9792d8a0aad9a5a | |
parent | 3eb49aec27e9f475d7d32afba0f796e4516ecc90 [diff] |
Fix the lowering of VECTOR_SHUFFLE on SPU to handle splats. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106419 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/CellSPU/SPUISelLowering.cpp b/lib/Target/CellSPU/SPUISelLowering.cpp index 148cb46..ba281cd 100644 --- a/lib/Target/CellSPU/SPUISelLowering.cpp +++ b/lib/Target/CellSPU/SPUISelLowering.cpp
@@ -1791,7 +1791,7 @@ } else { rotate = false; } - } else if (PrevElt == 0) { + } else if (i == 0) { // First time through, need to keep track of previous element PrevElt = SrcElt; } else {