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