1 /* PR tree-optimization/88702 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fdump-tree-iftoswitch-optimized" } */
4 
IsHTMLWhitespace(int aChar)5 int IsHTMLWhitespace(int aChar) {
6   return aChar == 0x0009 || aChar == 0x000A ||
7          aChar == 0x000C || aChar == 0x000D ||
8          aChar == 0x0020;
9 }
10 
11 /* { dg-final { scan-tree-dump "Condition chain with \[^\n\r]\* BBs transformed into a switch statement." "iftoswitch" } } */
12