* interpret.cc (run): Handle wide fload.
authorTom Tromey <tromey@redhat.com>
Thu, 10 Jun 2004 06:18:18 +0000 (06:18 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 10 Jun 2004 06:18:18 +0000 (06:18 +0000)
From-SVN: r82889

libjava/ChangeLog
libjava/interpret.cc

index 091a2dc50a18bda0921611a9f22fe631b3d7af36..35c659b852d3c65236e017f61091f56c5af140be 100644 (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.
index 61ff9fb0122a9d1b84dbf518a6315ff76476d998..331424f0834d8bf7777831fb36545fad172b9a76 100644 (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;