summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2014-03-23 21:14:32 +0000
committerArnaud A. de Grandmaison <arnaud.adegm@gmail.com>2014-03-23 21:14:32 +0000
commitb0c513b9ba3d0a17c58ca91cd71b1c420ca0eec6 (patch)
tree66bc11dead9878de6fa68057a34933a13d52f030
parentf5afb78a9dbb62e69b3c59aeeeb57e1d560d1e23 (diff)
downloadllvm-b0c513b9ba3d0a17c58ca91cd71b1c420ca0eec6.tar.gz
llvm-b0c513b9ba3d0a17c58ca91cd71b1c420ca0eec6.tar.bz2
llvm-b0c513b9ba3d0a17c58ca91cd71b1c420ca0eec6.tar.xz
ARM: no need to update SplatBits as it is not used
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204575 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMISelLowering.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.cpp b/lib/Target/ARM/ARMISelLowering.cpp
index e14edfece6..b512db5551 100644
--- a/lib/Target/ARM/ARMISelLowering.cpp
+++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -4372,7 +4372,6 @@ static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
// Value = 0x0000nnff: Op=x, Cmode=1100.
OpCmode = 0xc;
Imm = SplatBits >> 8;
- SplatBits |= 0xff;
break;
}
@@ -4381,7 +4380,6 @@ static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
// Value = 0x00nnffff: Op=x, Cmode=1101.
OpCmode = 0xd;
Imm = SplatBits >> 16;
- SplatBits |= 0xffff;
break;
}
@@ -4412,7 +4410,6 @@ static SDValue isNEONModifiedImm(uint64_t SplatBits, uint64_t SplatUndef,
}
// Op=1, Cmode=1110.
OpCmode = 0x1e;
- SplatBits = Val;
VT = is128Bits ? MVT::v2i64 : MVT::v1i64;
break;
}