blob: 555bffe738d90a56a599af377eeae7ca106e2e8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* On VxWorks, in RTP mode, constructors and destructors go in named
sections. The section names must include the initialization
priority, even for constructors and destructors with the default
priority. */
/* The selector below excludes VxWorks AE because AE does not support
RTP mode. */
/* { dg-do compile { target { *-*-vxworks* && { ! *-*-vxworksae* } } } } */
/* { dg-options "-mrtp" } */
/* { dg-final { scan-assembler "ctors\.00000" } } */
/* { dg-final { scan-assembler "dtors\.00000" } } */
volatile int i;
void c1 () __attribute__((constructor));
void c1 () { ++i; }
void d1 () __attribute__((destructor));
void d1 () { --i; }
|