diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-02 22:34:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-02 22:34:36 +0000 |
commit | d69fe07ead0b14603cb37fd9659bffc11afa37b1 (patch) | |
tree | 533dc9f35cdcd999b12c8520a7fda6f944af14e0 /gdb/varobj.c | |
parent | 46615f07c3db91f7a0f138baec128749604dca43 (diff) | |
download | gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.zip gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.tar.gz gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.tar.bz2 |
2005-02-02 Andrew Cagney <cagney@gnu.org>
* value.h (value_lazy): Declare.
* varobj.c, value.c, valops.c, valarith.c, printcmd.c: Update.
* cp-valprint.c, breakpoint.c, ada-lang.c: Update.
Diffstat (limited to 'gdb/varobj.c')
-rw-r--r-- | gdb/varobj.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/varobj.c b/gdb/varobj.c index d58c8bd..78bea7c 100644 --- a/gdb/varobj.c +++ b/gdb/varobj.c @@ -500,7 +500,7 @@ varobj_create (char *objname, { /* no error */ release_value (var->value); - if (VALUE_LAZY (var->value)) + if (value_lazy (var->value)) gdb_value_fetch_lazy (var->value); } else @@ -1686,7 +1686,7 @@ value_of_child (struct varobj *parent, int index) value = (*parent->root->lang->value_of_child) (parent, index); /* If we're being lazy, fetch the real value of the variable. */ - if (value != NULL && VALUE_LAZY (value)) + if (value != NULL && value_lazy (value)) { /* If we fail to fetch the value of the child, return NULL so that callers notice that we're leaving an @@ -1904,7 +1904,7 @@ c_value_of_root (struct varobj **var_handle) go on */ if (gdb_evaluate_expression (var->root->exp, &new_val)) { - if (VALUE_LAZY (new_val)) + if (value_lazy (new_val)) { /* We need to catch errors because if value_fetch_lazy fails we still want to continue @@ -2092,7 +2092,7 @@ c_value_of_variable (struct varobj *var) struct cleanup *old_chain = make_cleanup_ui_file_delete (stb); char *thevalue; - if (VALUE_LAZY (var->value)) + if (value_lazy (var->value)) gdb_value_fetch_lazy (var->value); val_print (value_type (var->value), value_contents_raw (var->value), 0, |