mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 11:02:04 +08:00
8 lines
122 B
C++
8 lines
122 B
C++
// RUN: %clangxx_msan -O0 %s -o %t && %run %t
|
|
|
|
int main(void) {
|
|
int i;
|
|
__sync_lock_test_and_set(&i, 0);
|
|
return i;
|
|
}
|