2011-03-02 Michael Snyder <msnyder@vmware.com>

* infcall.c (call_function_by_hand): Add break statements for lint.
This commit is contained in:
Michael Snyder 2011-03-02 22:21:45 +00:00
parent 905b671bb7
commit c38d16a719
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2011-03-02 Michael Snyder <msnyder@vmware.com>
* infcall.c (call_function_by_hand): Add break statements for lint.
* utils.c (parse_escape): Escape the escape char.
* python/py-inferior.c (build_inferior_list): Error out if

View file

@ -831,9 +831,11 @@ Evaluation of the expression containing the function\n\
(%s) will be abandoned.\n\
When the function is done executing, GDB will silently stop."),
e.message, name);
break; /* lint */
case RETURN_QUIT:
default:
throw_exception (e);
break; /* lint */
}
}