re: FAIL: gcc.dg/pr97515.c
authorAndrew MacLeod <amacleod@redhat.com>
Fri, 20 Nov 2020 15:37:26 +0000 (10:37 -0500)
committerAndrew MacLeod <amacleod@redhat.com>
Fri, 20 Nov 2020 16:08:43 +0000 (11:08 -0500)
Adjust testcase to check in CCP not EVRP.

gcc/testuite/
* gcc.dg/pr97515.c: Check in ccp2, not evrp.

gcc/testsuite/gcc.dg/pr97515.c

index 84f145a261fff7373cfc387b0902b40612da8cd6..b4f2481cb03f96327b64e7e7d5186a68f655d8a6 100644 (file)
@@ -1,5 +1,5 @@
 /* { dg-do compile } */
-/* { dg-options "-O2 -fdump-tree-evrp" } */
+/* { dg-options "-O2 -fdump-tree-ccp2" } */
 
 int
 e7 (int gg)
@@ -20,6 +20,8 @@ e7 (int gg)
   return xe;
 }
 
-/* EVRP should be able to reduce this to a single goto.  */
+/* EVRP should be able to reduce this to a single goto when we can
+ * revisit statements to try folding again based on changed inputs.
+ * Until then, make sure its gone by ccp2.  */
  
-/* { dg-final { scan-tree-dump-times "goto" 1 "evrp" } } */
+/* { dg-final { scan-tree-dump-times "goto" 1 "ccp2" } } */