URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [uchar-3.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* Copyright (C) 2002 Free Software Foundation, Inc. */ /* { dg-do compile } */ /* { dg-options "-funsigned-char -fpreprocessed" } */ /* Source: Ziemowit Laski. -fpreprocessed doesn't define macros, but CPP would interpret charconsts based upon whether __CHAR_UNSIGNED__ was defined. */ int foo() { char f = 0x83; if (f == '\x83') /* { dg-bogus "always false" } */ f = 0; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log