commit e703cf33b768fa08ab5b26ca5f85eba756212088
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Tue Aug 4 09:57:21 2015 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Tue Aug 4 09:57:21 2015 +0200

    Remove unneeded internal check
    
    This check had a consecutive call to error(), so it will
    always notified, even without the internal check.

diff --git a/cc1/types.c b/cc1/types.c
index 0cf283f..ddcbbc0 100644
--- a/cc1/types.c
+++ b/cc1/types.c
@@ -257,8 +257,6 @@ ctype(unsigned type, unsigned sign, unsigned size)
                }
                break;
        }
-       fputs("internal type error, aborting\n", stderr);
-       abort();
 
 invalid_type:
        error("invalid type specification");

Reply via email to