view gcc/testsuite/c-c++-common/Wprio-ctor-dtor.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-require-effective-target init_priority } */
/* { dg-options "-Wno-prio-ctor-dtor" } */

void construct1 () __attribute__ ((constructor (10)));
void construct2 () __attribute__ ((constructor (100)));
void construct2 () __attribute__ ((constructor (101)));
void destruct1 () __attribute__ ((destructor (1)));
void destruct2 () __attribute__ ((destructor (02)));
void destruct2 () __attribute__ ((destructor (102)));