summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2014-04-28 11:27:43 +0000
committerTim Northover <tnorthover@apple.com>2014-04-28 11:27:43 +0000
commit16aac4387f3ff3e8e8702b09ac23a0b320b3b1d3 (patch)
tree9a6985d98ade490649164d1410f9cc501899db82 /test
parentdb0b52c8e09e7cbb3452d4560dfeb1c933034794 (diff)
downloadllvm-16aac4387f3ff3e8e8702b09ac23a0b320b3b1d3.tar.gz
llvm-16aac4387f3ff3e8e8702b09ac23a0b320b3b1d3.tar.bz2
llvm-16aac4387f3ff3e8e8702b09ac23a0b320b3b1d3.tar.xz
ARM64: diagnose use of v16-v31 in certain indexed NEON instructions.
Someone couldn't bear to have a completely orthogonal set of floating-point registers, so we've got some instructions that only accept v0-v15 (coming in ARMv9, V128_prime: you're allowed v2, v3, v5, v7, ...). Anyway, we were permitting even the out of range registers during assembly (CodeGen handled it correctly). This adds a diagnostic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/ARM64/v128_lo-diagnostics.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MC/ARM64/v128_lo-diagnostics.s b/test/MC/ARM64/v128_lo-diagnostics.s
new file mode 100644
index 0000000000..ffe29cfbed
--- /dev/null
+++ b/test/MC/ARM64/v128_lo-diagnostics.s
@@ -0,0 +1,11 @@
+// RUN: not llvm-mc -triple arm64 -mattr=neon %s 2> %t > /dev/null
+// RUN: FileCheck %s < %t
+
+ sqrdmulh v0.8h, v1.8h, v16.h[0]
+// CHECK: error: invalid operand for instruction
+
+ sqrdmulh h0, h1, v16.h[0]
+// CHECK: error: invalid operand for instruction
+
+ sqdmull2 v0.4h, v1.8h, v16.h[0]
+// CHECK: error: invalid operand for instruction