2013-11-02 02:16:25 +08:00
|
|
|
// RUN: %clang -target x86_64-unknown-linux -fsanitize=thread %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
// RUN: %clang -O1 -target x86_64-unknown-linux -fsanitize=thread %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
// RUN: %clang -O2 -target x86_64-unknown-linux -fsanitize=thread %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
// RUN: %clang -O3 -target x86_64-unknown-linux -fsanitize=thread %s -S -emit-llvm -o - | FileCheck %s
|
|
|
|
// RUN: %clang -target x86_64-unknown-linux -fsanitize=thread %s -S -emit-llvm -o - | FileCheck %s
|
2012-11-07 02:16:37 +08:00
|
|
|
// Verify that -fsanitize=thread invokes tsan instrumentation.
|
2012-03-02 06:27:08 +08:00
|
|
|
|
|
|
|
int foo(int *a) { return *a; }
|
|
|
|
// CHECK: __tsan_init
|