diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2014-09-28 06:11:04 +0000 | 
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2014-09-28 06:11:04 +0000 | 
| commit | 6578f9208bd0e45337b9a34bba712e19c7b6cb86 (patch) | |
| tree | 77fc1b55a8f776b3d28d85bc5ad3ef332455dac4 /llvm/lib | |
| parent | b10c6b8e9ea2389ce390ef500298733b73639966 (diff) | |
| download | bcm5719-llvm-6578f9208bd0e45337b9a34bba712e19c7b6cb86.tar.gz bcm5719-llvm-6578f9208bd0e45337b9a34bba712e19c7b6cb86.zip | |
[x86] Fix a really silly bug that I introduced fixing another bug in the
new vector shuffle target DAG combines -- it helps to actually test for
the value you want rather than just using an integer in a boolean
context.
Have I mentioned that I loathe implicit conversions recently? :: sigh ::
llvm-svn: 218576
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 09f0be0e246..c74a84665fb 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -21012,7 +21012,7 @@ static SDValue PerformTargetShuffleCombine(SDValue N, SelectionDAG &DAG,      // See if this reduces to a PSHUFD which is no more expensive and can      // combine with more operations. Note that it has to at least flip the      // dwords as otherwise it would have been removed as a no-op. -    if (Mask[0] == 2 && Mask[1] == 3 && Mask[2] == 0 && Mask[3]) { +    if (Mask[0] == 2 && Mask[1] == 3 && Mask[2] == 0 && Mask[3] == 1) {        int DMask[] = {0, 1, 2, 3};        int DOffset = N.getOpcode() == X86ISD::PSHUFLW ? 0 : 2;        DMask[DOffset + 0] = DOffset + 1; | 

