Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-plugin/pr12942a.h
2023-03-06 14:48:14 +01:00

12 lines
182 B
C

extern void link_error ();
inline int test (void)
{
int exp = -1;
if ((exp < 2 ? 2U : (unsigned int) exp) != 2)
link_error ();
return 0;
}
typedef int (*test_t) (void);