mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-27 03:48:33 +00:00
b8aae5405b
llvm-svn: 207709
8 lines
127 B
C++
8 lines
127 B
C++
// RUN: %clangxx_msan -m64 -O0 %s -o %t && %run %t
|
|
|
|
int main(void) {
|
|
int i;
|
|
__sync_lock_test_and_set(&i, 0);
|
|
return i;
|
|
}
|