OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.20.1/] [ld/] [testsuite/] [ld-elf/] [init.c] - Blame information for rev 394

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

Line No. Rev Author Line
1 205 julius
#include <stdio.h>
2
 
3
static void
4
init_0 (void)
5
{
6
  printf ("init array 0\n");
7
}
8
 
9
static void
10
init_1 (void)
11
{
12
  printf ("init array 1\n");
13
}
14
 
15
static void
16
init_2 (void)
17
{
18
  printf ("init array 2\n");
19
}
20
 
21
void (*const init_array []) (void)
22
     __attribute__ ((section (".init_array"),
23
                     aligned (sizeof (void *)))) =
24
{
25
  &init_0,
26
  &init_1,
27
  &init_2
28
};
29
 
30
int
31
main (void)
32
{
33
  return 0;
34
}

powered by: WebSVN 2.1.0

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