From: Andrew Tridgell Date: Wed, 24 Sep 2003 05:57:54 +0000 (+0200) Subject: no need to exclude -fprofile-arcs X-Git-Tag: v2.3~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=026f2f4a13fc58d56a60326c56d925ff8f7c67fa;p=thirdparty%2Fccache.git no need to exclude -fprofile-arcs --- diff --git a/ccache.c b/ccache.c index eef28a5af..066f8189a 100644 --- a/ccache.c +++ b/ccache.c @@ -566,8 +566,7 @@ static void process_args(int argc, char **argv) } /* these are too hard */ - if (strcmp(argv[i], "-fprofile-arcs")==0 || - strcmp(argv[i], "-fbranch-probabilities")==0 || + if (strcmp(argv[i], "-fbranch-probabilities")==0 || strcmp(argv[i], "-M") == 0 || strcmp(argv[i], "-x") == 0) { cc_log("argument %s is unsupported\n", argv[i]);