1 /* { dg-do compile { target { *-*-linux* && ia32 } } } */ 2 /* { dg-options "-O2 -fpic -fno-plt -mregparm=3" } */ 3 4 extern void bar (int, int); 5 6 void foo(int a,int b)7foo (int a, int b) 8 { 9 bar (a, b); 10 bar (a, b); 11 } 12 13 /* { dg-final { scan-assembler "jmp\[ \t\]*.bar@GOT\\(%e(a|c|d)x\\)" } } */ 14