diff options
| -rw-r--r-- | libjava/ChangeLog | 4 | ||||
| -rw-r--r-- | libjava/interpret.cc | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 6452a72..d9c0f7a 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,9 @@ 2006-07-13 Bryce McKinlay <mckinlay@redhat.com> + * interpret.cc (_Jv_InterpMethod::run): Don't SAVE_PC for fdiv. + +2006-07-13 Bryce McKinlay <mckinlay@redhat.com> + * interpret.cc (_Jv_InterpMethod::compile): Add FIXME comment. (_Jv_InterpMethod::run): SAVE_PC before executing any instruction using resolve_pool_entry, as it can throw. Likewise for div/rem ops diff --git a/libjava/interpret.cc b/libjava/interpret.cc index b9abb01..68f798d 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -1847,7 +1847,6 @@ _Jv_InterpMethod::run (void *retp, ffi_raw *args, _Jv_InterpMethod *meth) insn_fdiv: { - SAVE_PC(); jfloat value2 = POPF(); jfloat value1 = POPF(); jfloat res = value1 / value2; |
