]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: Add another bitint testcase [PR113691]
authorJakub Jelinek <jakub@redhat.com>
Fri, 2 Feb 2024 10:29:25 +0000 (11:29 +0100)
committerJakub Jelinek <jakub@redhat.com>
Fri, 2 Feb 2024 10:30:06 +0000 (11:30 +0100)
This is fixed by the PR113692 patch.

2024-02-02  Jakub Jelinek  <jakub@redhat.com>

PR tree-optimization/113691
* gcc.dg/bitint-83.c: New test.

gcc/testsuite/gcc.dg/bitint-83.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/bitint-83.c b/gcc/testsuite/gcc.dg/bitint-83.c
new file mode 100644 (file)
index 0000000..96d3f71
--- /dev/null
@@ -0,0 +1,23 @@
+/* PR tree-optimization/113691 */
+/* { dg-do compile { target bitint } } */
+/* { dg-options "-O2 -std=gnu11 -w" } */
+
+#if __BITINT_MAXWIDTH__ >= 944
+_BitInt (944) i;
+#else
+_BitInt (63) i;
+#endif
+
+void foo ();
+
+void
+bar ()
+{
+  foo (i);
+}
+
+void
+foo (int *p)
+{
+  *p = 0;
+}