Revert "testsuite: mips: use noinline attribute instead of -fno-inline"
authorXi Ruoyao <xry111@mengyan1223.wang>
Fri, 23 Jul 2021 05:54:11 +0000 (13:54 +0800)
committerXi Ruoyao <xry111@mengyan1223.wang>
Fri, 23 Jul 2021 05:54:11 +0000 (13:54 +0800)
This reverts commit 3b33b1136d5ba1903a56fa601a848accc3db46ef.

gcc/testsuite/gcc.target/mips/cfgcleanup-jalr2.c
gcc/testsuite/gcc.target/mips/cfgcleanup-jalr3.c

index 6a9f86a..bf22f06 100644 (file)
@@ -1,15 +1,10 @@
 /* { dg-do compile } */
-/* { dg-options "-mabicalls -fpic -mno-mips16 -mno-micromips -fipa-ra -mcompact-branches=never" } */
+/* { dg-options "-mabicalls -fpic -mno-mips16 -mno-micromips -fno-inline -fipa-ra -mcompact-branches=never" } */
 /* { dg-skip-if "needs codesize optimization" { *-*-* } { "-O0" "-O1" "-O2" "-O3" } { "" } } */
 
-static int __attribute__((noinline))
-foo (void* p)
-{
-  __asm__ (""::"r"(p):"$t0");
-  return 0;
-}
+static int foo (void* p) { __asm__ (""::"r"(p):"$t0"); return 0; }
 
-__attribute__((noinline)) static int bar (void* p) { return 1; }
+static int bar (void* p) { return 1; }
 
 int
 test (void* p)
index 5093741..805b31a 100644 (file)
@@ -1,10 +1,10 @@
 /* { dg-do compile } */
-/* { dg-options "-mabicalls -fpic -mno-mips16 -mno-micromips -fipa-ra -mcompact-branches=never" } */
+/* { dg-options "-mabicalls -fpic -mno-mips16 -mno-micromips -fno-inline -fipa-ra -mcompact-branches=never" } */
 /* { dg-skip-if "needs codesize optimization" { *-*-* } { "-O0" "-O1" "-O2" "-O3" } { "" } } */
 
-__attribute__((noinline)) static int foo (void* p) { return 0; }
+static int foo (void* p) { return 0; }
 
-__attribute__((noinline)) static int bar (void* p) { return 1; }
+static int bar (void* p) { return 1; }
 
 int
 test (void* p)