------- Comment #6 from pinskia at gcc dot gnu dot org 2006-10-11 02:37 ------- (In reply to comment #5) > (In reply to comment #4) > > asm("stw%X0 %1,%0" ::"r"(a->t) :"r"(3) : "memory"); > This is what I get for making a runtime testcase in the bug report. > That asm should be: > asm("stw%X0 %1,%0" ::"r"(a->t) ,"r"(3) : "memory"); Grrr, lets try that again, this time for the correct PPC asm: asm("stw %1,0(%0)" ::"r"(a->t) ,"r"(3) : "memory");
-- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29415