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

17 lines
240 B
C

#include <stdio.h>
#ifdef HAS_INT128
volatile __int128 a = 42;
volatile __int128 b = 1;
#else
volatile long long a = 42;
volatile long long b = 1;
#endif
int
main (void)
{
if (((int) (a / b)) == 42)
printf ("PASS\n");
return 0;
}