diff options
author | Arnaud A. de Grandmaison <arnaud.adegm@gmail.com> | 2014-03-23 21:14:32 +0000 |
---|---|---|
committer | Arnaud A. de Grandmaison <arnaud.adegm@gmail.com> | 2014-03-23 21:14:32 +0000 |
commit | 1182600f2077b9420a9e741ecbb49083b034e42d (patch) | |
tree | 7219895c8493371a41ea608dcf0510acd345af0b /llvm/lib/Target/ARM/ARMISelLowering.cpp | |
parent | eb8cc3d454bc60aac69b70b9b27680defccfafe0 (diff) | |
download | bcm5719-llvm-1182600f2077b9420a9e741ecbb49083b034e42d.tar.gz bcm5719-llvm-1182600f2077b9420a9e741ecbb49083b034e42d.zip |
ARM: no need to update SplatBits as it is not used
llvm-svn: 204575
Diffstat (limited to 'llvm/lib/Target/ARM/ARMISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index e14edfece64..b512db5551e 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/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; } |