OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-elf/] [dl4main.c] - Blame information for rev 262

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
#include <stdio.h>
2
 
3
extern int foo1;
4
extern int foo2;
5
extern void bar (void);
6
 
7
void
8
xxx1 (void)
9
{
10
  printf ("MAIN1\n");
11
}
12
 
13
void
14
xxx2 (void)
15
{
16
  printf ("MAIN2\n");
17
}
18
 
19
int
20
main (void)
21
{
22
  foo1 = 1;
23
  foo2 = 1;
24
  bar ();
25
  if (foo1 == -1)
26
    printf ("OK1\n");
27
  else if (foo1 == 1)
28
    printf ("OK2\n");
29
  if (foo2 == -1)
30
    printf ("OK3\n");
31
  else if (foo2 == 1)
32
    printf ("OK4\n");
33
  return 0;
34
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.