VAX: Add a test for the SImode `ffs' operation
authorMaciej W. Rozycki <macro@linux-mips.org>
Sat, 5 Dec 2020 18:26:25 +0000 (18:26 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Sat, 5 Dec 2020 18:26:25 +0000 (18:26 +0000)
gcc/testsuite/
* gcc.target/vax/ffssi.c: New test.

gcc/testsuite/gcc.target/vax/ffssi.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.target/vax/ffssi.c b/gcc/testsuite/gcc.target/vax/ffssi.c
new file mode 100644 (file)
index 0000000..3e7a3c2
--- /dev/null
@@ -0,0 +1,19 @@
+/* { dg-do compile } */
+
+int
+ffssi (int x)
+{
+  return __builtin_ffs (x);
+}
+
+/* Expect assembly like:
+
+       ffs $0,$32,%r1,%r0
+       jneq .L2
+       mnegl $1,%r0
+.L2:
+       incl %r0
+
+ */
+
+/* { dg-final { scan-assembler "\tffs \\\$0,\\\$32," } } */