if-to-switch: Fix test-suite patterns.
authorMartin Liska <mliska@suse.cz>
Tue, 1 Dec 2020 19:38:40 +0000 (20:38 +0100)
committerMartin Liska <mliska@suse.cz>
Tue, 1 Dec 2020 19:53:04 +0000 (20:53 +0100)
gcc/testsuite/ChangeLog:

PR testsuite/98085
* g++.dg/tree-ssa/if-to-switch-1.C: Do not expect precise number
of BBs.
* gcc.dg/tree-ssa/if-to-switch-1.c: Likewise.
* gcc.dg/tree-ssa/if-to-switch-2.c: Likewise. Find better name
for the function.
* gcc.dg/tree-ssa/if-to-switch-3.c: Likewise. Find better name
for the function.
* gcc.dg/tree-ssa/if-to-switch-5.c: Likewise.

gcc/testsuite/g++.dg/tree-ssa/if-to-switch-1.C
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-1.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-2.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-3.c
gcc/testsuite/gcc.dg/tree-ssa/if-to-switch-5.c

index 88505e8869f8bc0197e2969211cdd22ede16e584..96c4d5770643bc414903c6e711d868a78de74276 100644 (file)
@@ -22,4 +22,4 @@ void tree_node() {
   int g = 0;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with 3 BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
index 92df4e93bfa6f157b4800a68fd132f7a034a51ec..52f92ae145de75cb05d2c60b05f3d3e4a999d28e 100644 (file)
@@ -32,4 +32,4 @@ int main(int argc, char **argv)
   return 0;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with 5 BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
index 36e62ae5be1856bc1be3381217b0d633741e164d..c229614a3d88e329eb24bc424926c5c70703a98b 100644 (file)
@@ -1,11 +1,11 @@
 /* { dg-do compile } */
 /* { dg-options "-O2 -fdump-tree-iftoswitch-optimized" } */
 
-int IsHTMLWhitespaceNoRange(int aChar)
+int isMyRandomCharacter(int aChar)
 {
   return aChar == 0x0001 || aChar == 0x000A ||
          aChar == 0x000C || aChar == 0x000E ||
          aChar == 0x0020;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with 3 BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
index 9a4ce16023847f6ed289031626d8332479868196..4c7253ce212a23a3375e90131ab2075c9e608d95 100644 (file)
@@ -1,11 +1,11 @@
 /* { dg-do compile } */
 /* { dg-options "-O2 -fdump-tree-iftoswitch-optimized" } */
 
-int IsHTMLWhitespace(int aChar)
+int IsMySuperRandomChar(int aChar)
 {
   return aChar == 0x0009 || aChar == 0x000A ||
          aChar == 0x000C || aChar == 0x000D ||
          aChar == 0x0020 || aChar == 0x0030;
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with 3 BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */
index 7734a58500bd7cddb96758793dd496ec27252082..43b0f31b2ffba47881534ed1bd683371cdc21986 100644 (file)
@@ -9,4 +9,4 @@ int crud (unsigned char c)
           || (int) c == 39) != 0);
 }
 
-/* { dg-final { scan-tree-dump "Condition chain with 5 BBs transformed into a switch statement." "iftoswitch" } } */
+/* { dg-final { scan-tree-dump "Condition chain with .* BBs transformed into a switch statement." "iftoswitch" } } */