Sign in
qemu
/
qemu
/
15d62536a9ec78db9ab07b113e5e07a6e02e52fb
/
.
/
tests
/
tcg
/
aarch64
/
test-2150.c
blob: fb86c11958681d02c2dff60676878cad13f6343f [
file
] [
log
] [
blame
]
/* 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
;
}