brintos

brintos / llvm-project-archived public Read only

0
0
Text · 238 B · c3c9cad Raw
18 lines · cpp
1// RUN: %clangxx -c -o %t %s2// RUN: %llvm_jitlink %t3//4// REQUIRES: system-darwin && host-arch-compatible5 6static int x = 1;7 8class Init {9public:10  Init() { x = 0; }11};12 13static Init I;14 15int main(int argc, char *argv[]) {16  return x;17}18