commit 1083fc50f098b2ad5b40244b16a6b351c44e2b3f
Author:     Quentin Rameau <[email protected]>
AuthorDate: Wed Jan 25 16:14:47 2017 +0100
Commit:     Quentin Rameau <[email protected]>
CommitDate: Wed Jan 25 16:15:49 2017 +0100

    [cc1] fix tool name in usage()
    
    Adding an arch suffix was a bad idea because the object is common to all
    arch, and putting usage() into arch.c would have been ugly.

diff --git a/cc1/main.c b/cc1/main.c
index 40e836e..02cd4b9 100644
--- a/cc1/main.c
+++ b/cc1/main.c
@@ -44,7 +44,7 @@ defmacro(char *macro)
 static void
 usage(void)
 {
-       die("usage: cc1-" ARCH " [-Ewd] [-D def[=val]]... [-U def]... "
+       die("usage: cc1 [-Ewd] [-D def[=val]]... [-U def]... "
            "[-I dir]... [-o output] [input]");
 }
 

Reply via email to