re PR driver/18732 (Compiler will not compile two source files if first has error or is unreadable)
PR 18732 * gcc.c (main): Do not break out of loop when error is reported while processing one source file. From-SVN: r92018
This commit is contained in:
parent
7d5f9cc68f
commit
3dede806ac
|
@ -1,3 +1,9 @@
|
||||||
|
2004-12-10 Devang Patel <dpatel@apple.com>
|
||||||
|
|
||||||
|
PR 18732
|
||||||
|
* gcc.c (main): Do not break out of loop when error is reported while
|
||||||
|
processing one source file.
|
||||||
|
|
||||||
2004-12-10 Diego Novillo <dnovillo@redhat.com>
|
2004-12-10 Diego Novillo <dnovillo@redhat.com>
|
||||||
|
|
||||||
* tree-into-ssa.c (REWRITE_THIS_STMT): Define.
|
* tree-into-ssa.c (REWRITE_THIS_STMT): Define.
|
||||||
|
|
|
@ -6548,7 +6548,6 @@ main (int argc, const char **argv)
|
||||||
{
|
{
|
||||||
delete_failure_queue ();
|
delete_failure_queue ();
|
||||||
error_count++;
|
error_count++;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
/* If this compilation succeeded, don't delete those files later. */
|
/* If this compilation succeeded, don't delete those files later. */
|
||||||
clear_failure_queue ();
|
clear_failure_queue ();
|
||||||
|
|
Loading…
Reference in New Issue