Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/pr100563.c
2023-03-06 14:48:14 +01:00

9 lines
202 B
C

/* { dg-do compile } */
/* { dg-options "-Og -Wno-pointer-to-int-cast" } */
unsigned long long e(void);
void f(int);
void a() {
short b = -1, c = (int)&b;
unsigned long long d = e();
f(b >= d);
}