Remove support for the (deprecated) openrisc and or32 configurations and replace
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / comm1.c
CommitLineData
0a36a439
L
1#include <stdio.h>
2#include <stdlib.h>
3
4int foo;
5void bar (void);
6
7int
8main ()
9{
10 if (foo != 0)
11 abort ();
12 foo = 200;
13 bar ();
14 if (foo == 200)
15 printf ("PASS\n");
16 return 0;
17}
This page took 0.392349 seconds and 4 git commands to generate.