re PR target/89093 (C++ exception handling clobbers d8 VFP register)
authorJakub Jelinek <jakub@redhat.com>
Tue, 30 Apr 2019 16:30:44 +0000 (18:30 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 30 Apr 2019 16:30:44 +0000 (18:30 +0200)
PR target/89093
* gcc.target/aarch64/return_address_sign_3.c: Remove extra space in
target attribute.

From-SVN: r270705

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/aarch64/return_address_sign_3.c

index 585b35091624a54ef066985ad60cabbd7bcc920e..2d0240bbc7a98d322926a898822c7c8a33dce95c 100644 (file)
@@ -1,3 +1,9 @@
+2019-04-30  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/89093
+       * gcc.target/aarch64/return_address_sign_3.c: Remove extra space in
+       target attribute.
+
 2019-04-30  Giuliano Belinassi  <giuliano.belinassi@usp.br>
 
        * gcc.dg/sinhatanh-2.c: Count the number of functions.
index e39ed34ab1c13d1368f4a625b4a466eb76354ef8..646186e30c0101f9fe11d23bb24132e4e33f83af 100644 (file)
@@ -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;