diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-02-11 23:24:28 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-02-11 23:24:28 +0000 |
commit | 28ec5077d7f533713104cdfa21817917098c8111 (patch) | |
tree | 9ced273cb24e537c8ceb95288d25bf8496c274af /libjava/interpret.cc | |
parent | 0a9f300a82e92cac5657a8adbcea689e68cc795b (diff) | |
download | gcc-28ec5077d7f533713104cdfa21817917098c8111.zip gcc-28ec5077d7f533713104cdfa21817917098c8111.tar.gz gcc-28ec5077d7f533713104cdfa21817917098c8111.tar.bz2 |
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
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index c8870c3..6cde68d 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: |