* interpret.cc (run): Handle wide fload.

From-SVN: r82889
This commit is contained in:
Tom Tromey 2004-06-10 06:18:18 +00:00 committed by Tom Tromey
parent 373614fc05
commit 618df7453e
2 changed files with 9 additions and 1 deletions

View File

@ -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.

View File

@ -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;