Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / binary-constants-3.c
blob5b49cb4efbb4bb398aeb4e5e2d45eadd7629572a
1 /* Test for binary integer constants: -pedantic-errors. */
3 /* Origin: Joerg Wunsch <j.gnu@uriah.heep.sax.de>. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=iso9899:1999 -pedantic-errors -ftrack-macro-expansion=0" } */
7 #define FOO 0b1101
9 int
10 foo (void)
12 #if FOO /* { dg-error "binary constants are a C2X feature or GCC extension" } */
13 return 23;
14 #endif
15 return 0b1101; /* { dg-error "binary constants are a C2X feature or GCC extension" } */