dwz/tests/dwz-quick-test/something.c
Petr Šabata a2c5ba0193 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/dwz#a1324d7885666feffae8ce625c0899557692a742
2020-10-14 23:54:20 +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");
}