blob: c209db3718e29ef300e05dd6667f7b153ccf4fc1 [file] [log] [blame]
/* { dg-skip-if part { *-*-* } } */
/* Via the magic string "-std=*++" indicate that testing one (the default) C++ standard is sufficient. */
extern int i;
extern int j;
CDTOR_LINKAGE
void cd4() __attribute__((constructor (800), destructor (800)));
CDTOR_LINKAGE
void cd4() {
if (i != 3)
__builtin_abort ();
++j;
}