Commit eeac616e by Volker Reichelt Committed by Volker Reichelt

* gcc.c (execute): Improve readability.

From-SVN: r107886
parent 4e20d9c4
2005-12-02 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
* gcc.c (execute): Improve readability.
2005-12-02 Richard Guenther <rguenther@suse.de> 2005-12-02 Richard Guenther <rguenther@suse.de>
* tree-cfg.c (mark_used_vars): New function. * tree-cfg.c (mark_used_vars): New function.
......
...@@ -2871,7 +2871,10 @@ execute (void) ...@@ -2871,7 +2871,10 @@ execute (void)
we would otherwise have succeeded. */ we would otherwise have succeeded. */
if (WTERMSIG (status) == SIGPIPE if (WTERMSIG (status) == SIGPIPE
&& (signal_count || greatest_status >= MIN_FATAL_STATUS)) && (signal_count || greatest_status >= MIN_FATAL_STATUS))
; {
signal_count++;
ret_code = -1;
}
else else
#endif #endif
fatal ("\ fatal ("\
...@@ -2880,8 +2883,6 @@ Please submit a full bug report.\n\ ...@@ -2880,8 +2883,6 @@ Please submit a full bug report.\n\
See %s for instructions.", See %s for instructions.",
strsignal (WTERMSIG (status)), commands[i].prog, strsignal (WTERMSIG (status)), commands[i].prog,
bug_report_url); bug_report_url);
signal_count++;
ret_code = -1;
} }
else if (WIFEXITED (status) else if (WIFEXITED (status)
&& WEXITSTATUS (status) >= MIN_FATAL_STATUS) && WEXITSTATUS (status) >= MIN_FATAL_STATUS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment