blob: 90e494bf55cbf2feffbec6e0f0fbc26228ea14fb [file] [log] [blame]
// { dg-do assemble { target i?86-*-linux* x86_64-*-linux* } }
// { dg-require-effective-target ilp32 }
// We'd use ebx with -fpic/-fPIC, so skip.
// { dg-skip-if "" { *-*-* } { "-fpic" "-fPIC" } { "" } }
// Origin: "Weidmann, Nicholas" <nicholas.weidmann@swx.ch>
typedef void (function_ptr)(int);
void foo(int)
{
}
template<function_ptr ptr> void doit(int i)
{
__asm__("pushl %0\n\t"
"call *%1\n\t"
"popl %0"
:
: "a" (i), "b" (ptr));
}
void bar()
{
doit<foo>(123);
}