libstdc++: Define __glibcxx_assert_fail for non-verbose build [PR115585]
[official-gcc.git] / gcc / testsuite / gcc.dg / sibcall-11.c
blob12f6d9c9c34ea61aa1df747f26844e40281dfba4
1 // Test for sibcall optimization with empty struct.
2 // { dg-options "-O2" }
3 /* { dg-additional-options "-fno-PIE" { target ia32 } } */
4 // { dg-final { scan-assembler "jmp" { target i?86-*-* x86_64-*-* } } }
6 struct A { };
7 void f(struct A);
8 void g(struct A a) { f(a); }