aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/aarch64/test-2150.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/aarch64/test-2150.c')
-rw-r--r--tests/tcg/aarch64/test-2150.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/tcg/aarch64/test-2150.c b/tests/tcg/aarch64/test-2150.c
new file mode 100644
index 0000000000..fb86c11958
--- /dev/null
+++ b/tests/tcg/aarch64/test-2150.c
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/* See https://gitlab.com/qemu-project/qemu/-/issues/2150 */
+
+int main()
+{
+ asm volatile(
+ "movi v6.4s, #1\n"
+ "movi v7.4s, #0\n"
+ "sub v6.2d, v7.2d, v6.2d\n"
+ : : : "v6", "v7");
+ return 0;
+}