diff mbox series

Remove strange dump suboptions in testsuite.

Message ID 082864de-01fe-e84e-01ea-0b87d7fff916@suse.cz
State New
Headers show
Series Remove strange dump suboptions in testsuite. | expand

Commit Message

Martin Liška Nov. 18, 2019, 12:53 p.m. UTC
Hi.

I've noticed we have a strange dump suboptions in 2 tests.
Let's remove it, I'm going to install the following patch.

Martin

gcc/testsuite/ChangeLog:

2019-11-18  Martin Liska  <mliska@suse.cz>

	* gcc.dg/ipa/ipa-icf-36.c: Remove 'all-all-all'.
	* gcc.dg/ipa/ipa-icf-37.c: Likewise.
---
  gcc/testsuite/gcc.dg/ipa/ipa-icf-36.c | 4 +++-
  gcc/testsuite/gcc.dg/ipa/ipa-icf-37.c | 4 +++-
  2 files changed, 6 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.dg/ipa/ipa-icf-36.c b/gcc/testsuite/gcc.dg/ipa/ipa-icf-36.c
index e630b6dc140..e1f26302cc7 100644
--- a/gcc/testsuite/gcc.dg/ipa/ipa-icf-36.c
+++ b/gcc/testsuite/gcc.dg/ipa/ipa-icf-36.c
@@ -1,5 +1,6 @@ 
 /* { dg-do compile } */
-/* { dg-options "-O2 -fdump-ipa-icf-optimized-all-all-all-all -fmerge-all-constants"  } */
+/* { dg-options "-O2 -fdump-ipa-icf-optimized -fmerge-all-constants"  } */
+
 static int a;
 static int b;
 static const int c = 2;
@@ -28,6 +29,7 @@  int t(int tt)
     case 11: return k[0];
   }
 }
+
 /* { dg-final { scan-ipa-dump "Equal symbols: 6" "icf"  } } */
 /* { dg-final { scan-ipa-dump "Semantic equality hit:a->b" "icf"  } } */
 /* { dg-final { scan-ipa-dump "Semantic equality hit:c->d" "icf"  } } */
diff --git a/gcc/testsuite/gcc.dg/ipa/ipa-icf-37.c b/gcc/testsuite/gcc.dg/ipa/ipa-icf-37.c
index e482bd275d9..b3816552e7f 100644
--- a/gcc/testsuite/gcc.dg/ipa/ipa-icf-37.c
+++ b/gcc/testsuite/gcc.dg/ipa/ipa-icf-37.c
@@ -1,5 +1,6 @@ 
 /* { dg-do compile } */
-/* { dg-options "-O2 -fdump-ipa-icf-optimized-all-all-all-all"  } */
+/* { dg-options "-O2 -fdump-ipa-icf-optimized"  } */
+
 static int a;
 static int b;
 static const int c = 2;
@@ -28,6 +29,7 @@  int t(int tt)
     case 11: return k[0];
   }
 }
+
 /* { dg-final { scan-ipa-dump "Equal symbols: 5" "icf"  } } */
 /* { dg-final { scan-ipa-dump "Semantic equality hit:a->b" "icf"  } } */
 /* { dg-final { scan-ipa-dump "Semantic equality hit:c->d" "icf"  } } */