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.5.1/] [gcc/] [testsuite/] [gcc.dg/] [dfp/] [dfp-dbg.h] - Rev 303
Go to most recent revision | Compare with Previous | Blame | View Log
#define EXTERN extern int failures; #ifdef DBG extern int printf (const char *, ...); #define FAILURE { printf ("failed at line %d\n", __LINE__); failures++; } #define FINISH if (failures != 0) __builtin_abort (); return 0; #else #define FAILURE __builtin_abort (); #define FINISH return 0; #endif
Go to most recent revision | Compare with Previous | Blame | View Log