S/390: Fix tests that expect unquoted option names
authorRobin Dapp <rdapp@linux.ibm.com>
Fri, 15 Mar 2019 13:19:10 +0000 (13:19 +0000)
committerRobin Dapp <rdapp@gcc.gnu.org>
Fri, 15 Mar 2019 13:19:10 +0000 (13:19 +0000)
r269586 puts single quotes around option names. This patch fixes tests
that expect the old format.

From-SVN: r269706

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/s390/target-attribute/tattr-1.c
gcc/testsuite/gcc.target/s390/target-attribute/tattr-2.c
gcc/testsuite/gcc.target/s390/target-attribute/tattr-3.c
gcc/testsuite/gcc.target/s390/target-attribute/tattr-4.c

index bb03f140e4d38a121a3804600a3d76c1a8eedafb..285dc51b5e724fc86132318ead820b1c4bbca6b0 100644 (file)
@@ -1,3 +1,10 @@
+2019-03-15  Robin Dapp  <rdapp@linux.ibm.com>
+
+       * gcc.target/s390/target-attribute/tattr-1.c (htm0): -mhtm -> '-mhtm'.
+       * gcc.target/s390/target-attribute/tattr-2.c: Likewise.
+       * gcc.target/s390/target-attribute/tattr-3.c (vx0): -mvx -> '-mvx'.
+       * gcc.target/s390/target-attribute/tattr-4.c: Likewise.
+
 2019-03-15  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
        PR target/89719
index 31643490540e4cc38bde3c4370e217cf0388569e..ff573443d041e084a7f67b13e3f30afe938b80f9 100644 (file)
@@ -13,7 +13,7 @@ void htm1(void)
 __attribute__ ((target("arch=z10")))
 void htm0(void)
 {
-  __builtin_tend(); /* { dg-error "is not supported without -mhtm" } */
+  __builtin_tend(); /* { dg-error "is not supported without '-mhtm'" } */
 }
 
 void htmd(void)
index f0d282f6a66c4c51ef9ac4817adecc5869312095..739c2eabc837a66aae118d383dd70283e19d2b3a 100644 (file)
@@ -20,7 +20,7 @@ void p0(void)
 #ifdef __HTM__
 #error __HTM__ is defined
 #endif
-  __builtin_tend (); /* { dg-error "is not supported without -mhtm" } */
+  __builtin_tend (); /* { dg-error "is not supported without '-mhtm'" } */
 }
 #pragma GCC reset_options
 
@@ -39,7 +39,7 @@ void a0(void)
 #ifdef __HTM__
 #error __HTM__ is defined
 #endif
-  __builtin_tend (); /* { dg-error "is not supported without -mhtm" } */
+  __builtin_tend (); /* { dg-error "is not supported without '-mhtm'" } */
 }
 
 void htmd(void)
@@ -47,5 +47,5 @@ void htmd(void)
 #ifdef __HTM__
 #error __HTM__ is defined
 #endif
-  __builtin_tend (); /* { dg-error "is not supported without -mhtm" } */
+  __builtin_tend (); /* { dg-error "is not supported without '-mhtm'" } */
 }
index 1af2274120de1d748e80f976dc09e0bea5a431df..769690e942c1e778551705f635201c55c9a77d21 100644 (file)
@@ -16,7 +16,7 @@ void vx1(void)
 __attribute__ ((target("arch=z10")))
 void vx0(void)
 {
-  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires -mvx" } */
+  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires '-mvx'" } */
 }
 
 void vxd(void)
index c501eca2ca675d193366ded0d1cc8b75710161ec..cd813d9a59bb56b9852baed0b3d9e41e2d69af42 100644 (file)
@@ -24,7 +24,7 @@ void a0(void)
 #ifdef __VEC__
 #error __VEC__ is defined
 #endif
-  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires -mvx" } */
+  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires '-mvx'" } */
 }
 
 void d(void)
@@ -32,5 +32,5 @@ void d(void)
 #ifdef __VEC__
 #error __VEC__ is defined
 #endif
-  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires -mvx" } */
+  __builtin_s390_vll ((unsigned int)0, (const void *)8); /* { dg-error "requires '-mvx'" } */
 }