diff options
Diffstat (limited to 'llvm')
| -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 af06704f5df..3ab273c9c24 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -11139,7 +11139,7 @@ static SDValue lowerV4F64VectorShuffle(SDValue Op, SDValue V1, SDValue V2,    // we will be able to shuffle even across lanes the other input in a single    // instruction so skip this pattern.    if (!(Subtarget.hasAVX2() && (isShuffleMaskInputInPlace(0, Mask) || -                                 isShuffleMaskInputInPlace(1, Mask)))) +                                isShuffleMaskInputInPlace(1, Mask))))      if (SDValue Result = lowerVectorShuffleByMerging128BitLanes(              DL, MVT::v4f64, V1, V2, Mask, Subtarget, DAG))        return Result;  | 

