URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
Subversion Repositories open8_urisc
[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [ld/] [testsuite/] [ld-elf/] [dl4.c] - Rev 88
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> int foo1; int foo2; extern void xxx1 (void); extern void xxx2 (void); void bar (int x) { if (foo1 == 1) printf ("bar OK1\n"); else if (foo1 == 0) printf ("bar OK2\n"); if (foo2 == 1) printf ("bar OK3\n"); else if (foo2 == 0) printf ("bar OK4\n"); foo1 = -1; foo2 = -1; xxx1 (); xxx2 (); }
Go to most recent revision | Compare with Previous | Blame | View Log