1 | // RUN: %clangxx -c -o %t %s |
---|---|
2 | // RUN: %llvm_jitlink %t |
3 | // |
4 | // REQUIRES: system-darwin && host-arch-compatible |
5 | |
6 | static int x = 1; |
7 | |
8 | class Init { |
9 | public: |
10 | Init() { x = 0; } |
11 | }; |
12 | |
13 | static Init I; |
14 | |
15 | int main(int argc, char *argv[]) { |
16 | return x; |
17 | } |
18 |