blob: d59f70e1e69c8aaf8290357f8eeee51775aed5db [file] [log] [blame] [edit]
volatile int x, y;
__attribute__((constructor)) void init_x() { x = 14; }
__attribute__((constructor)) void init_y() { y = 144; }
int main() { return x + y; }