mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 23:30:07 +08:00
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:
parent
0a9f300a82
commit
28ec5077d7
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user