1 /* { dg-do compile } */
2 /* { dg-options "-fdump-rtl-expand-all" */
3 /* { dg-final { cleanup-rtl-dump "expand" } } */
isdigit(int c)4 int isdigit(int c)
5 {
6         return c >= 0;
7 }
8 
9 
10