diff options
author | Elliott Hughes <enh@google.com> | 2020-09-25 16:08:14 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-09-25 16:08:14 +0000 |
commit | 73ed0c4525121d5ba7c0326f348e780935e6f7cc (patch) | |
tree | bdc5493126f1aa7d15269a8e70a074decf6fd30c /libm | |
parent | 7241ac6c07583211ec2d1230cb530f18775c7858 (diff) | |
parent | f5bdee7fdf15e0c3bf77b215aea073b1beee3c02 (diff) |
Merge changes from topic "arm64_branch-protection"
* changes:
libc: Add Armv8.3-A PAuth and Armv8.5-A BTI compatibility to *.S
Update crtbegin.c and crt*.S to support Armv8.5-A BTI
libm: Add Armv8.3-A PAuth and Armv8.5-A BTI support to assembly files
libc: Prepare support for Armv8.3-A PAuth and Armv8.5-A BTI in *.S
Diffstat (limited to 'libm')
-rw-r--r-- | libm/arm64/lrint.S | 2 | ||||
-rw-r--r-- | libm/arm64/sqrt.S | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/libm/arm64/lrint.S b/libm/arm64/lrint.S index 5f95ae817..e835d0835 100644 --- a/libm/arm64/lrint.S +++ b/libm/arm64/lrint.S @@ -32,3 +32,5 @@ END(lrintf) ALIAS_SYMBOL(llrint, lrint); ALIAS_SYMBOL(llrintf, lrintf); + +NOTE_GNU_PROPERTY() diff --git a/libm/arm64/sqrt.S b/libm/arm64/sqrt.S index 3a58ef364..0659b13a8 100644 --- a/libm/arm64/sqrt.S +++ b/libm/arm64/sqrt.S @@ -25,3 +25,5 @@ ENTRY(sqrtf) fsqrt s0, s0 ret END(sqrtf) + +NOTE_GNU_PROPERTY() |