summaryrefslogtreecommitdiff
path: root/test/lld/init.c
blob: d59f70e1e69c8aaf8290357f8eeee51775aed5db (plain)
1
2
3
4
5
6
7
volatile int x, y;

__attribute__((constructor)) void init_x() { x = 14; }

__attribute__((constructor)) void init_y() { y = 144; }

int main() { return x + y; }