From: Jakub Jelinek Date: Tue, 30 Apr 2019 16:30:44 +0000 (+0200) Subject: re PR target/89093 (C++ exception handling clobbers d8 VFP register) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7248a6309cc7a5b071f2eeed310b3a2e16c89da2;p=gcc.git re PR target/89093 (C++ exception handling clobbers d8 VFP register) PR target/89093 * gcc.target/aarch64/return_address_sign_3.c: Remove extra space in target attribute. From-SVN: r270705 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 585b3509162..2d0240bbc7a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2019-04-30 Jakub Jelinek + + PR target/89093 + * gcc.target/aarch64/return_address_sign_3.c: Remove extra space in + target attribute. + 2019-04-30 Giuliano Belinassi * gcc.dg/sinhatanh-2.c: Count the number of functions. diff --git a/gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c b/gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c index e39ed34ab1c..646186e30c0 100644 --- a/gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c +++ b/gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c @@ -5,13 +5,13 @@ int bar (int, int); -int __attribute__ ((target ("arch=armv8.3-a, branch-protection=pac-ret"))) +int __attribute__ ((target ("arch=armv8.3-a,branch-protection=pac-ret"))) func1_leaf (int a, int b, int c, int d) { return a + b + c + d; } -int __attribute__ ((target ("arch=armv8.3-a, branch-protection=none"))) +int __attribute__ ((target ("arch=armv8.3-a,branch-protection=none"))) func2_none (int a, int b, int c, int d) { return c + bar (a, b) + d;