Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / init / attrib1.C
blob839e4ce215d6f66079c3b92ef0ad29d2464a8992
1 // { dg-do run }
3 void f() __attribute((__constructor__));
4 int i;
5 void f() { i = 1; }
7 int main(int, char **)
9   return 1-i;