Retro68/elfutils/tests/testfile_const_type.c
Wolfgang Thaller d21be3b4e1 Add elfutils-0.170
(from https://sourceware.org/elfutils/, GPL/LGPL licensed)
2017-09-21 21:04:42 +02:00

15 lines
205 B
C

// gcc -m32 -g -O2 -o const_type const_type.c
__attribute__((noinline, noclone)) int
f1 (long long d)
{
long long w = d / 0x1234567800000LL;
return w;
}
int
main ()
{
return f1 (4LL) - f1 (4LL);
}