summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/gcc.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a56d7ea615c..971c24967ec 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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>
* tree-into-ssa.c (REWRITE_THIS_STMT): Define.
diff --git a/gcc/gcc.c b/gcc/gcc.c
index eaf58d22d02..707ae338efe 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6548,7 +6548,6 @@ main (int argc, const char **argv)
{
delete_failure_queue ();
error_count++;
- break;
}
/* If this compilation succeeded, don't delete those files later. */
clear_failure_queue ();