interpret.cc (continue1): Use STOREA, not STOREI, to implement astore instruction.

* interpret.cc (continue1): Use STOREA, not STOREI, to implement
	astore instruction.  From Hans Boehm.

From-SVN: r31939
This commit is contained in:
Tom Tromey 2000-02-11 23:24:28 +00:00 committed by Tom Tromey
parent 0a9f300a82
commit 28ec5077d7
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-02-11 Tom Tromey <tromey@cygnus.com>
* interpret.cc (continue1): Use STOREA, not STOREI, to implement
astore instruction. From Hans Boehm.
2000-02-04 Warren Levy <warrenl@cygnus.com>
* java/math/BigInteger.java(BigInteger(String, int)): New constructor.

View File

@ -5,7 +5,7 @@ contributions are not listed. Please keep this list in alphabetical
order.
Geoff Berry for his object serialization work and various patches.
Hans-J. Boehm for his garbage collector.
Hans-J. Boehm for his garbage collector and other work.
Godmar Back for his improvements and encouragement.
Per Bothner for dreaming up, designing and implementing much of gcj.
Steve Chamberlain for config fixes and the picoJava port.

View File

@ -1080,7 +1080,7 @@ void _Jv_InterpMethod::continue1 (_Jv_InterpMethodInvocation *inv)
NEXT_INSN;
insn_astore:
STOREI (get1u (pc++));
STOREA (get1u (pc++));
NEXT_INSN;
insn_istore_0: