[compiler-rt] r280411 - [tsan] Bump stack frame size limit.
Evgeniy Stepanov via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 1 13:43:59 PDT 2016
Author: eugenis
Date: Thu Sep 1 15:43:59 2016
New Revision: 280411
URL: http://llvm.org/viewvc/llvm-project?rev=280411&view=rev
Log:
[tsan] Bump stack frame size limit.
Modified:
compiler-rt/trunk/lib/tsan/CMakeLists.txt
Modified: compiler-rt/trunk/lib/tsan/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/CMakeLists.txt?rev=280411&r1=280410&r2=280411&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/tsan/CMakeLists.txt Thu Sep 1 15:43:59 2016
@@ -17,7 +17,7 @@ endif()
set(TSAN_RTL_CFLAGS ${TSAN_CFLAGS})
append_list_if(COMPILER_RT_HAS_MSSE3_FLAG -msse3 TSAN_RTL_CFLAGS)
-append_list_if(SANITIZER_LIMIT_FRAME_SIZE -Wframe-larger-than=512
+append_list_if(SANITIZER_LIMIT_FRAME_SIZE -Wframe-larger-than=530
TSAN_RTL_CFLAGS)
append_list_if(COMPILER_RT_HAS_WGLOBAL_CONSTRUCTORS_FLAG -Wglobal-constructors
TSAN_RTL_CFLAGS)
More information about the llvm-commits
mailing list