[PATCH] D108555: [tsan] Make sanitize-thread-disable.c an X86-only test
Alexander Potapenko via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 23 07:12:21 PDT 2021
glider updated this revision to Diff 368096.
glider added a comment.
Removed the header
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108555/new/
https://reviews.llvm.org/D108555
Files:
clang/test/CodeGen/sanitize-thread-disable.c
Index: clang/test/CodeGen/sanitize-thread-disable.c
===================================================================
--- clang/test/CodeGen/sanitize-thread-disable.c
+++ clang/test/CodeGen/sanitize-thread-disable.c
@@ -1,8 +1,6 @@
// RUN: %clang -target x86_64-linux-gnu -S -emit-llvm -o - %s | FileCheck -check-prefixes CHECK,WITHOUT %s
// RUN: %clang -target x86_64-linux-gnu -S -emit-llvm -o - %s -fsanitize=thread | FileCheck -check-prefixes CHECK,TSAN %s
-#include <stdatomic.h>
-
// Instrumented function.
// TSan inserts calls to __tsan_func_entry() and __tsan_func_exit() to prologue/epilogue.
// Non-atomic loads are instrumented with __tsan_readXXX(), atomic loads - with
@@ -19,7 +17,7 @@
// WITHOUT-NOT: call void @__tsan_func_exit
// CHECK: ret i32
int instrumented1(int *a, _Atomic int *b) {
- return *a + atomic_load(b);
+ return *a + *b;
}
// Function with no_sanitize("thread").
@@ -37,7 +35,7 @@
// WITHOUT-NOT: call void @__tsan_func_exit
// CHECK: ret i32
__attribute__((no_sanitize("thread"))) int no_false_positives1(int *a, _Atomic int *b) {
- return *a + atomic_load(b);
+ return *a + *b;
}
// Function with disable_sanitizer_instrumentation: no instrumentation at all.
@@ -53,5 +51,5 @@
// WITHOUT-NOT: call void @__tsan_func_exit
// CHECK: ret i32
__attribute__((disable_sanitizer_instrumentation)) int no_instrumentation1(int *a, _Atomic int *b) {
- return *a + atomic_load(b);
+ return *a + *b;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D108555.368096.patch
Type: text/x-patch
Size: 1459 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210823/a84a0921/attachment.bin>
More information about the cfe-commits
mailing list