From: Kuba Mracek Date: Fri, 24 Mar 2017 21:12:24 +0000 (+0000) Subject: Follow-up for r298738: Use "0" instead of "false" because the variable is uptr. X-Git-Tag: llvmorg-5.0.0-rc1~9210 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e598c0d8e12f2bdfa8036ca9378ae6ee8824ea3b;p=platform%2Fupstream%2Fllvm.git Follow-up for r298738: Use "0" instead of "false" because the variable is uptr. llvm-svn: 298741 --- diff --git a/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc b/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc index bf08c74..48351e8 100644 --- a/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc +++ b/compiler-rt/lib/tsan/rtl/tsan_libdispatch_mac.cc @@ -93,7 +93,7 @@ static tsan_block_context_t *AllocContext(ThreadState *thr, uptr pc, new_context->free_context_in_callback = true; new_context->submitted_synchronously = false; new_context->is_barrier_block = false; - new_context->non_queue_sync_object = false; + new_context->non_queue_sync_object = 0; return new_context; }