This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Catch errors in value_get_print_value


 > > It's much quieter than a window full of error/warning messages.  If
 > > there's no value available, the frontend doesn't show one.  That seems
 > > logical to me but perhaps only because I'm used to it.
 > 
 > Well, maybe we could use in_scope="false" and no value, and let the
 > front end decide...

But the variable may be in scope and the frontend wouldn't be able to
distinguish between this case and when the variable really was out of
scope.  Maybe another value e.g in_scope="unreadable" would work.

Re your patch:

  if (initial && changeable)
    ...
  else if (changeable)
    ...

Isn't:

if (changeable)
  {
    if (initial)
      ...
    else
      ...
  }

easier to read?


-- 
Nick                                           http://www.inet.net.nz/~nickrob


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]