aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMISelLowering.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-08-21 12:40:21 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-08-21 12:40:21 +0000
commit6c28c006c732c46bef1f367edeeb992051307e2b (patch)
tree81c020fe1e874695b18b4abf8b91d47615961d38 /lib/Target/ARM/ARMISelLowering.cpp
parent2a0296f324bd6d4c342bbb525793add75da96cea (diff)
downloadexternal_llvm-6c28c006c732c46bef1f367edeeb992051307e2b.zip
external_llvm-6c28c006c732c46bef1f367edeeb992051307e2b.tar.gz
external_llvm-6c28c006c732c46bef1f367edeeb992051307e2b.tar.bz2
Provide vext.{16,32}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79620 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.cpp')
-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 9eb3cc9..3ceedd7 100644
--- a/lib/Target/ARM/ARMISelLowering.cpp
+++ b/lib/Target/ARM/ARMISelLowering.cpp
@@ -2371,9 +2371,6 @@ static bool isVEXTMask(const SmallVectorImpl<int> &M, EVT VT,
if (ReverseVEXT)
Imm -= NumElts;
- // VEXT only handles 8-bit elements so scale the index for larger elements.
- Imm *= VT.getVectorElementType().getSizeInBits() / 8;
-
return true;
}