aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-03-25 18:16:01 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-03-25 18:16:01 -0500
commit253245dfd103b08654b4c93df7e457362eb240c5 (patch)
treed0da185950db78bbba36fa5df69df278d52a0848 /gcc
parent25a1b9189d2714b4c76dfd62c8261770a32811c4 (diff)
downloadgcc-253245dfd103b08654b4c93df7e457362eb240c5.zip
gcc-253245dfd103b08654b4c93df7e457362eb240c5.tar.gz
gcc-253245dfd103b08654b4c93df7e457362eb240c5.tar.bz2
(for_lint): Variable renamed from `lint'.
From-SVN: r6904
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cccp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 5066273..b4ca117 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);