diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-01-04 21:59:10 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-01-04 21:59:10 +0000 |
commit | 5e572bb44adb067e5d4daf50169243b610954061 (patch) | |
tree | 0483aa01f18e2d862a4e83a31ac70b9e9cf715b0 /gdb/Makefile.in | |
parent | 74a44383f0a7ceb4976b51dbf0a8709df34b8e24 (diff) | |
download | gdb-5e572bb44adb067e5d4daf50169243b610954061.zip gdb-5e572bb44adb067e5d4daf50169243b610954061.tar.gz gdb-5e572bb44adb067e5d4daf50169243b610954061.tar.bz2 |
* Makefile.in (eval.o): Update dependencies.
* eval.c: Include "ui-out.h" and "exceptions.h".
(evaluate_subexp_standard): Use TRY_CATCH around value_of_variable.
Use value_zero if an error occurs when avoiding side effects.
* varobj.c (c_value_of_root): Initialize new_val.
* gdb.mi/mi-var-cmd.exp: Add tests for unreadable varobjs.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 491e7d4..928cd77 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1968,7 +1968,8 @@ environ.o: environ.c $(defs_h) $(environ_h) $(gdb_string_h) eval.o: eval.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ $(value_h) $(expression_h) $(target_h) $(frame_h) $(language_h) \ $(f_lang_h) $(cp_abi_h) $(infcall_h) $(objc_lang_h) $(block_h) \ - $(parser_defs_h) $(cp_support_h) $(gdb_assert_h) + $(parser_defs_h) $(cp_support_h) $(gdb_assert_h) $(exceptions_h) \ + $(uiout_h) event-loop.o: event-loop.c $(defs_h) $(event_loop_h) $(event_top_h) \ $(gdb_string_h) $(exceptions_h) $(gdb_assert_h) $(gdb_select_h) event-top.o: event-top.c $(defs_h) $(top_h) $(inferior_h) $(target_h) \ |