diff options
Diffstat (limited to 'compiler-rt/test/tsan/tsan-vs-gvn.cc')
-rw-r--r-- | compiler-rt/test/tsan/tsan-vs-gvn.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/tsan/tsan-vs-gvn.cc b/compiler-rt/test/tsan/tsan-vs-gvn.cc index 950f5d30d4d..efd81ef502f 100644 --- a/compiler-rt/test/tsan/tsan-vs-gvn.cc +++ b/compiler-rt/test/tsan/tsan-vs-gvn.cc @@ -31,7 +31,7 @@ int main() { pthread_create(&t[1], NULL, Thread2, NULL); pthread_join(t[0], NULL); pthread_join(t[1], NULL); - printf("PASS\n"); + fprintf(stderr, "PASS\n"); } // CHECK-NOT: WARNING: ThreadSanitizer: data race |