summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/lto/pr91393_0.c
blob: 43b2426c86b86cb3c4691ac3c020d3a5fe5c98e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
void __open_alias(int, ...) __asm__("open");
void __open_alias(int flags, ...) {}
extern __inline __attribute__((__gnu_inline__)) int open() {}
struct {
  void *func;
} a = {open};

int main()
{
  return 0;
}