diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-09-07 18:24:00 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-09-07 18:24:00 +0000 |
commit | 67fc1e76d4561635dbd56a79285e77c1ed595a30 (patch) | |
tree | 6802521c406c76d77ebbe473bcbc645b653c94d6 | |
parent | 49be60695451d9321ad588bc04ccd1810b60cfa5 (diff) |
Minor change. Since the checks are equivalent, use isMMX
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113239 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 974d9eb6ea..a313365240 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -5475,7 +5475,7 @@ X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const { // Only a few shuffle masks are handled for 64-bit vectors (MMX), and // 64-bit vectors which made to this point can't be handled, they are // expanded. - if (VT.getSizeInBits() == 64) + if (isMMX) return SDValue(); if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) && |