diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-08-12 22:54:19 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-08-12 22:54:19 +0000 |
commit | af385baa1d0438104a67b63a61b264c7cde43c50 (patch) | |
tree | ee275f2e54147e8d89c2caf376313e7a54ae63c2 /lib/Target/ARM/ARMISelLowering.h | |
parent | d8e1757eacbcbae6657558f40fdada4279a9d1ed (diff) | |
download | external_llvm-af385baa1d0438104a67b63a61b264c7cde43c50.zip external_llvm-af385baa1d0438104a67b63a61b264c7cde43c50.tar.gz external_llvm-af385baa1d0438104a67b63a61b264c7cde43c50.tar.bz2 |
Recognize Neon VDUP shuffles during legalization instead of selection.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMISelLowering.h')
-rw-r--r-- | lib/Target/ARM/ARMISelLowering.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMISelLowering.h b/lib/Target/ARM/ARMISelLowering.h index 328959a..57f3c4d 100644 --- a/lib/Target/ARM/ARMISelLowering.h +++ b/lib/Target/ARM/ARMISelLowering.h @@ -129,7 +129,8 @@ namespace llvm { // Vector shuffles: VREV64, // reverse elements within 64-bit doublewords VREV32, // reverse elements within 32-bit words - VREV16 // reverse elements within 16-bit halfwords + VREV16, // reverse elements within 16-bit halfwords + VSPLAT0 // duplicate element 0 into all elements }; } |