aarch64: Fix noexecstack note in libitm

sjlj.S only had the note on Linux, but it is supposed
to have it on FreeBSD too.

2020-07-09  Szabolcs Nagy  <szabolcs.nagy@arm.com>

libitm/ChangeLog:

	* config/aarch64/sjlj.S: Add stack note if __FreeBSD__ is defined.
This commit is contained in:
Szabolcs Nagy 2020-07-03 14:09:25 +01:00
parent 63b6808e69
commit 463ba375f7

View File

@ -87,6 +87,6 @@ GTM_longjmp:
cfi_endproc
.size GTM_longjmp, . - GTM_longjmp
#ifdef __linux__
#if defined(__linux__) || defined(__FreeBSD__)
.section .note.GNU-stack, "", %progbits
#endif