diff options
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r-- | gdb/f-exp.y | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y index 3c486ef..56629dc 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -521,10 +521,7 @@ variable: name_not_typename innermost_block = sym.block; } write_exp_elt_opcode (pstate, OP_VAR_VALUE); - /* We want to use the selected frame, not - another more inner frame which happens to - be in the same block. */ - write_exp_elt_block (pstate, NULL); + write_exp_elt_block (pstate, sym.block); write_exp_elt_sym (pstate, sym.symbol); write_exp_elt_opcode (pstate, OP_VAR_VALUE); break; |