* darwin_stop_world.c: Change inline asm instruction to ld as ldz
is wrong.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110224
138bc75d-0d04-0410-961f-
82ee72b054a4
2006-01-25 Andreas Tobler <a.tobler@schweiz.ch>
+ * darwin_stop_world.c: Change inline asm instruction to ld as ldz
+ is wrong.
+
* Makefile.am (asm_libgcjgc_sources): Rename to asm_libgcjgc_sources.
* Makefile.in: Regenerate.
# if CPP_WORDSZ == 32
__asm__ volatile("lwz %0,0(r1)" : "=r" (frame));
# else
- __asm__ volatile("ldz %0,0(r1)" : "=r" (frame));
+ __asm__ volatile("ld %0,0(r1)" : "=r" (frame));
# endif
# endif
} else {