diff options
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index 61ff9fb0122..331424f0834 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -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; |