Re: lto-18 test
[deliverable/binutils-gdb.git] / ld / testsuite / ld-plugin / pr22751.c
1 #include <stdio.h>
2
3 #ifdef HAS_INT128
4 volatile __int128 a = 42;
5 volatile __int128 b = 1;
6 #else
7 volatile long long a = 42;
8 volatile long long b = 1;
9 #endif
10
11 int
12 main (void)
13 {
14 if (((int) (a / b)) == 42)
15 printf ("PASS\n");
16 return 0;
17 }
This page took 0.031291 seconds and 4 git commands to generate.