Say, I want to call a function with the following signature in inline assembly of gcc. How can I do that?
int some_function( void * arg );
|
Say, I want to call a function with the following signature in inline assembly of gcc. How can I do that?
|
|||
|
Generally you'll want to do something like
That is, you don't want to do the function call in the inline asm at all. That way you don't have to worry about details of the calling conventions, or stack frame management. |
|||
|
|
gcc -Sto get template code which you can adapt to your needs. – Paul R Nov 2 '11 at 17:00