forked from OSchip/llvm-project
tsan: add -Wno-maybe-uninitialized to Go build script
this is how the rest of the codebase is built llvm-svn: 183738
This commit is contained in:
parent
4d5ee8046f
commit
a8570d38fe
|
|
@ -64,7 +64,7 @@ for F in $SRCS; do
|
|||
cat $F >> gotsan.cc
|
||||
done
|
||||
|
||||
FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -m64 -Wall -Werror -fno-exceptions -fno-rtti -DTSAN_GO -DSANITIZER_GO -DTSAN_SHADOW_COUNT=4 $OSCFLAGS"
|
||||
FLAGS=" -I../rtl -I../.. -I../../sanitizer_common -I../../../include -m64 -Wall -Werror -Wno-maybe-uninitialized -fno-exceptions -fno-rtti -DTSAN_GO -DSANITIZER_GO -DTSAN_SHADOW_COUNT=4 $OSCFLAGS"
|
||||
if [ "$DEBUG" == "" ]; then
|
||||
FLAGS+=" -DTSAN_DEBUG=0 -O3 -fomit-frame-pointer"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -448,7 +448,7 @@ static bool HandleRacyStacks(ThreadState *thr, const StackTrace (&traces)[2],
|
|||
uptr addr_min, uptr addr_max) {
|
||||
Context *ctx = CTX();
|
||||
bool equal_stack = false;
|
||||
RacyStacks hash = {};
|
||||
RacyStacks hash;
|
||||
if (flags()->suppress_equal_stacks) {
|
||||
hash.hash[0] = md5_hash(traces[0].Begin(), traces[0].Size() * sizeof(uptr));
|
||||
hash.hash[1] = md5_hash(traces[1].Begin(), traces[1].Size() * sizeof(uptr));
|
||||
|
|
@ -488,7 +488,7 @@ static void AddRacyStacks(ThreadState *thr, const StackTrace (&traces)[2],
|
|||
uptr addr_min, uptr addr_max) {
|
||||
Context *ctx = CTX();
|
||||
if (flags()->suppress_equal_stacks) {
|
||||
RacyStacks hash = {};
|
||||
RacyStacks hash;
|
||||
hash.hash[0] = md5_hash(traces[0].Begin(), traces[0].Size() * sizeof(uptr));
|
||||
hash.hash[1] = md5_hash(traces[1].Begin(), traces[1].Size() * sizeof(uptr));
|
||||
ctx->racy_stacks.PushBack(hash);
|
||||
|
|
|
|||
Loading…
Reference in New Issue