Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / sibcall-11.c
blobae5877082363ea9e653d39cf7daaf681f480a93b
1 // Test for sibcall optimization with empty struct.
2 // { dg-options "-O2" }
3 // { dg-final { scan-assembler "jmp" { target i?86-*-* x86_64-*-* } } }
5 struct A { };
6 void f(struct A);
7 void g(struct A a) { f(a); }