1 /* isdigit(c) can be optimized to ((unsigned)c) - '0' <= 9, but only if
2 we know the correct value of '0'. PR 18785. */
5 /* { dg-require-iconv "IBM1047" } */
6 /* { dg-options "-O2 -fno-inline -fexec-charset=IBM1047" } */
8 extern int isdigit(int);
9 extern void abort(void);
11 static int str1(void) { return '1'; }
12 static int strA(void) { return 'A'; }