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