* interpret.cc (run): Handle wide fload.
From-SVN: r82889
This commit is contained in:
parent
373614fc05
commit
618df7453e
@ -1,3 +1,7 @@
|
||||
2004-06-10 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* interpret.cc (run): Handle wide fload.
|
||||
|
||||
2004-06-06 Jerry Quinn <jlquinn@optonline.net>
|
||||
|
||||
* java/util/zip/ZipEntry.java (setTime): Remove scaling.
|
||||
|
@ -1,6 +1,6 @@
|
||||
// interpret.cc - Code for the interpreter
|
||||
|
||||
/* Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation
|
||||
/* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
@ -3129,6 +3129,10 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args)
|
||||
LOADI (wide);
|
||||
NEXT_INSN;
|
||||
|
||||
case op_fload:
|
||||
LOADF (wide);
|
||||
NEXT_INSN;
|
||||
|
||||
case op_aload:
|
||||
LOADA (wide);
|
||||
NEXT_INSN;
|
||||
|
Loading…
Reference in New Issue
Block a user