From 253245dfd103b08654b4c93df7e457362eb240c5 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 25 Mar 1994 18:16:01 -0500 Subject: [PATCH] (for_lint): Variable renamed from `lint'. From-SVN: r6904 --- gcc/cccp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/cccp.c b/gcc/cccp.c index 506627326c3..b4ca117bdfd 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -359,7 +359,7 @@ static int max_include_len; /* Nonzero means turn NOTREACHED into #pragma NOTREACHED etc */ -static int lint = 0; +static int for_lint = 0; /* Nonzero means copy comments into the output file. */ @@ -1343,7 +1343,7 @@ main (argc, argv) if (! strcmp (argv[i], "-lang-asm")) lang_asm = 1; if (! strcmp (argv[i], "-lint")) - lint = 1; + for_lint = 1; break; case '+': @@ -2728,7 +2728,7 @@ do { ip = &instack[indepth]; \ ++ibp; /* Skip the star. */ /* If this cpp is for lint, we peek inside the comments: */ - if (lint) { + if (for_lint) { U_CHAR *argbp; int cmdlen, arglen; char *lintcmd = get_lintcmd (ibp, limit, &argbp, &arglen, &cmdlen); -- 2.30.2