OSDN Git Service

Duh.
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 5 Dec 2001 14:11:14 +0000 (14:11 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 5 Dec 2001 14:11:14 +0000 (14:11 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47672 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.c-torture/compile/20011130-1.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.c-torture/compile/20011130-1.c b/gcc/testsuite/gcc.c-torture/compile/20011130-1.c
new file mode 100644 (file)
index 0000000..82ff042
--- /dev/null
@@ -0,0 +1,7 @@
+extern struct S x[];
+struct S { int i; };
+char *bar (const struct S *);
+void foo (void)
+{
+  bar (x);
+}