svn commit: r321054 - stable/11/contrib/compiler-rt/lib/tsan/rtl

Ed Maste emaste at FreeBSD.org
Sun Jul 16 19:21:34 UTC 2017


Author: emaste
Date: Sun Jul 16 19:21:33 2017
New Revision: 321054
URL: https://svnweb.freebsd.org/changeset/base/321054

Log:
  MFC r319516: tsan: set noexec stack on aarch64
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S
==============================================================================
--- stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S	Sun Jul 16 19:20:15 2017	(r321053)
+++ stable/11/contrib/compiler-rt/lib/tsan/rtl/tsan_rtl_aarch64.S	Sun Jul 16 19:21:33 2017	(r321054)
@@ -252,7 +252,7 @@ __sigsetjmp:
   CFI_ENDPROC
 .size __sigsetjmp, .-__sigsetjmp
 
-#if defined(__linux__)
+#if defined(__FreeBSD__) || defined(__linux__)
 /* We do not need executable stack.  */
 .section        .note.GNU-stack,"", at progbits
 #endif


More information about the svn-src-all mailing list