Commit 618df745 by Tom Tromey Committed by Tom Tromey

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

From-SVN: r82889
parent 373614fc
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.
......
// 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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment