summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elf/pr13250-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-elf/pr13250-3.c')
-rw-r--r--ld/testsuite/ld-elf/pr13250-3.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/ld/testsuite/ld-elf/pr13250-3.c b/ld/testsuite/ld-elf/pr13250-3.c
new file mode 100644
index 0000000..a227670
--- /dev/null
+++ b/ld/testsuite/ld-elf/pr13250-3.c
@@ -0,0 +1,22 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int common1[1];
+char common2[2];
+
+extern int bar ();
+
+int
+main ()
+{
+ int i;
+ if (bar () != -1)
+ abort ();
+ if (common1[0] != -1)
+ abort ();
+ for (i = 0; i < sizeof (common2)/ sizeof (common2[0]); i++)
+ if (common2[i] != 0)
+ abort ();
+ printf ("PASS\n");
+ return 0;
+}