dwz/tests/dwz-quick-test/something.c
2017-10-12 09:01:51 +02:00

22 lines
211 B
C

#include <stdio.h>
void f (int x);
int
main (int argc, char *argv[])
{
int a = -1;
f(a);
return 0;
}
void
f (int x)
{
static int var __attribute__ ((used)) = 42;
if(x)
puts("hello, world");
}