Skip to content

Commit

Permalink
* interpret.cc (continue1): Use STOREA, not STOREI, to implement
Browse files Browse the repository at this point in the history
	astore instruction.  From Hans Boehm.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31939 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
tromey committed Feb 11, 2000
1 parent 7b2ca7d commit 938bb57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions libjava/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libjava/THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion libjava/interpret.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 938bb57

Please sign in to comment.