URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [paste3.c] - Rev 645
Go to most recent revision | Compare with Previous | Blame | View Log
/* Copyright (C) 2000 Free Software Foundation, Inc. */ /* { dg-do compile } */ #define plus + void foo() { int a, b = 1; /* The correct "a = 1 + ++b" will compile. The incorrect "a = 1 +++b" won't. */ a = 1 plus++b; }
Go to most recent revision | Compare with Previous | Blame | View Log