------- Comment #1 from pinskia at gcc dot gnu dot org 2006-09-03 20:39 ------- The inline-asm is incorrect as it does not tell the compiler it is going to use the value inside the pointers, it should be changed to something like: asm volatile ( "push %2 \n\t" "call *%1 \n\t" "add $4, %%esp \n\t" :"+m"(x)" : "r" ( &test ), "r" ( &x ),) );
-- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28944