summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20011015-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/20011015-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/20011015-1.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/20011015-1.c b/gcc/testsuite/gcc.dg/20011015-1.c
new file mode 100644
index 000000000..0b751bf40
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/20011015-1.c
@@ -0,0 +1,17 @@
+/* { dg-do compile } */
+/* { dg-options "-O3 -std=gnu99" } */
+
+char foo (char *x)
+{
+ return *x;
+}
+
+void bar (char *x)
+{
+ void *arr[foo (x)] __attribute__((unused));
+}
+
+void baz (char *x)
+{
+ bar (x);
+}