From 7248a6309cc7a5b071f2eeed310b3a2e16c89da2 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 30 Apr 2019 18:30:44 +0200 Subject: [PATCH] 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 --- gcc/testsuite/ChangeLog | 6 ++++++ gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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; -- 2.30.2