From 938bb574057321df08019edf2e9551620c20bbc4 Mon Sep 17 00:00:00 2001
From: tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Date: Fri, 11 Feb 2000 23:24:28 +0000
Subject: [PATCH] 	* interpret.cc (continue1): Use STOREA, not STOREI, to
 implement 	astore instruction.  From Hans Boehm.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31939 138bc75d-0d04-0410-961f-82ee72b054a4
---
 libjava/ChangeLog    | 5 +++++
 libjava/THANKS       | 2 +-
 libjava/interpret.cc | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 436de4c30345..30864c038edb 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -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.
diff --git a/libjava/THANKS b/libjava/THANKS
index 575a43624e0f..69d2ad6cb675 100644
--- a/libjava/THANKS
+++ b/libjava/THANKS
@@ -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.
diff --git a/libjava/interpret.cc b/libjava/interpret.cc
index c8870c334f3f..6cde68d981d7 100644
--- a/libjava/interpret.cc
+++ b/libjava/interpret.cc
@@ -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:
-- 
GitLab