darwin_stop_world.c: Change inline asm instruction to ld as ldz is wrong.

2006-01-25  Andreas Tobler  <a.tobler@schweiz.ch>

	* darwin_stop_world.c: Change inline asm instruction to ld as ldz
	is wrong.

From-SVN: r110224
This commit is contained in:
Andreas Tobler 2006-01-25 21:28:47 +01:00 committed by Andreas Tobler
parent c3e78ec817
commit 5c45cecb25
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
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.

View File

@ -38,7 +38,7 @@ unsigned long FindTopOfStack(unsigned int stack_start) {
# 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 {