mirror of git://gcc.gnu.org/git/gcc.git
18 lines
370 B
C
18 lines
370 B
C
// { dg-do compile }
|
|
// { dg-options "-O2 -std=c++11 -fno-pic" }
|
|
// { dg-require-effective-target fpic }
|
|
|
|
struct dummy { };
|
|
struct true_type { struct dummy i1; struct dummy i2; };
|
|
|
|
extern true_type y;
|
|
extern void xxx (true_type c);
|
|
|
|
void
|
|
yyy (void)
|
|
{
|
|
xxx (y);
|
|
}
|
|
|
|
// { dg-final { scan-assembler "jmp\[\t \]+\[^\$\]*?_Z3xxx9true_type" { target i?86-*-* x86_64-*-* } } }
|