[PATCH] D66021: [Sanitizer] Disable -Wframe-larger-than on SystemZ
Ulrich Weigand via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 21 08:54:25 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL369543: [Sanitizer] Disable -Wframe-larger-than on SystemZ (authored by uweigand, committed by ).
Herald added subscribers: steven.zhang, delcypher.
Changed prior to commit:
https://reviews.llvm.org/D66021?vs=214411&id=216414#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66021/new/
https://reviews.llvm.org/D66021
Files:
compiler-rt/trunk/CMakeLists.txt
Index: compiler-rt/trunk/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/CMakeLists.txt
+++ compiler-rt/trunk/CMakeLists.txt
@@ -335,12 +335,12 @@
endif()
# Determine if we should restrict stack frame sizes.
-# Stack frames on PowerPC and Mips and in debug biuld can be much larger than
+# Stack frames on PowerPC, Mips, SystemZ and in debug build can be much larger than
# anticipated.
# FIXME: Fix all sanitizers and add -Wframe-larger-than to
# SANITIZER_COMMON_FLAGS
if(COMPILER_RT_HAS_WFRAME_LARGER_THAN_FLAG AND NOT COMPILER_RT_DEBUG
- AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips")
+ AND NOT ${COMPILER_RT_DEFAULT_TARGET_ARCH} MATCHES "powerpc|mips|s390x")
set(SANITIZER_LIMIT_FRAME_SIZE TRUE)
else()
set(SANITIZER_LIMIT_FRAME_SIZE FALSE)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66021.216414.patch
Type: text/x-patch
Size: 842 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190821/33286165/attachment.bin>
More information about the llvm-commits
mailing list