From: Joel Rosdahl Date: Tue, 1 Jun 2010 19:04:53 +0000 (+0200) Subject: Remove unused found_x_opt variable X-Git-Tag: v3.0~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef89cb63c6e16aeb432d56e35e0409cab68739ed;p=thirdparty%2Fccache.git Remove unused found_x_opt variable --- diff --git a/ccache.c b/ccache.c index 31fa59e14..8a4026e3a 100644 --- a/ccache.c +++ b/ccache.c @@ -1293,7 +1293,6 @@ static void process_args(int argc, char **argv, ARGS **preprocessor_args, int found_c_opt = 0; int found_S_opt = 0; int found_arch_opt = 0; - int found_x_opt = 0; const char *input_language = NULL; struct stat st; /* is the dependency makefile name overridden with -MF? */ @@ -1369,7 +1368,6 @@ static void process_args(int argc, char **argv, ARGS **preprocessor_args, /* -x can change the extension for the next input file */ if (strcmp(argv[i], "-x") == 0 && !input_file) { - found_x_opt = 1; input_language = argv[i+1]; }