hotpatch-compile-15.c: Remove dg-prune-output directives.
authorJakub Jelinek <jakub@redhat.com>
Mon, 1 Jun 2015 11:38:04 +0000 (13:38 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 1 Jun 2015 11:38:04 +0000 (13:38 +0200)
* gcc.target/s390/hotpatch-compile-15.c: Remove dg-prune-output
directives.
(hp3, hp4): Add inline keyword.
* gcc.target/s390/hotpatch-19.c: Remove dg-prune-output directive.
(hp2): Add inline keyword.
* gcc.target/s390/hotpatch-19.c: Remove dg-prune-output directives.
(hp2): Add inline keyword.

From-SVN: r223933

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/s390/hotpatch-19.c
gcc/testsuite/gcc.target/s390/hotpatch-20.c
gcc/testsuite/gcc.target/s390/hotpatch-compile-15.c

index fab0df2e41a2022be5380ac55191cd7116611e0b..0590f02a0931562477212cb312547095d23c2ce0 100644 (file)
@@ -1,3 +1,13 @@
+2015-06-01  Jakub Jelinek  <jakub@redhat.com>
+
+       * gcc.target/s390/hotpatch-compile-15.c: Remove dg-prune-output
+       directives.
+       (hp3, hp4): Add inline keyword.
+       * gcc.target/s390/hotpatch-19.c: Remove dg-prune-output directive.
+       (hp2): Add inline keyword.
+       * gcc.target/s390/hotpatch-19.c: Remove dg-prune-output directives.
+       (hp2): Add inline keyword.
+
 2015-06-01  Ilya Enkovich  <ilya.enkovich@intel.com>
 
        PR target/65527
index c69b35e562a50fb9d6ab2f9a59e1b957fd6d1dff..bb8a137edb062b18e9cd053478ec5ac0b07b8d46 100644 (file)
@@ -5,9 +5,8 @@
 
 #include <stdio.h>
 
-/* { dg-prune-output "always_inline function might not be inlinable" } */
 __attribute__ ((always_inline))
-static void hp2(void)
+static inline void hp2(void)
 {
   printf("hello, world!\n");
 }
index 0a32a68993f434f9519567cdf76e0f5c350cddf1..222ae5a60530c5d632640150cdb4537eedb5e46b 100644 (file)
@@ -5,15 +5,13 @@
 
 #include <stdio.h>
 
-/* { dg-prune-output "always_inline function might not be inlinable" } */
 __attribute__ ((hotpatch(1,2)))
 __attribute__ ((always_inline))
-static void hp2(void)
+static inline void hp2(void)
 {
   printf("hello, world!\n");
 }
 
-/* { dg-prune-output "called from here" } */
 void hp1(void)
 {
   hp2();
index 4ce7375a7c31ecc00f9e637103d218e8563530a6..12e04ea33e6f88d39c05fc1257c88eee61b7000e 100644 (file)
@@ -3,9 +3,6 @@
 /* { dg-do compile } */
 /* { dg-options "-O3 -mzarch" } */
 
-/* { dg-prune-output "always_inline function might not be inlinable" } */
-/* { dg-prune-output "called from here" } */
-
 #include <stdio.h>
 
 __attribute__ ((hotpatch(1,2)))
@@ -22,14 +19,14 @@ static inline void hp2(void)
 
 __attribute__ ((hotpatch(0,0)))
 __attribute__ ((always_inline))
-static void hp3(void)
+static inline void hp3(void)
 {
   printf("hello, world!\n");
 }
 
 __attribute__ ((hotpatch(1,2)))
 __attribute__ ((always_inline))
-static void hp4(void)
+static inline void hp4(void)
 {
   printf("hello, world!\n");
 }