(for_lint): Variable renamed from `lint'.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 23:16:01 +0000 (18:16 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 25 Mar 1994 23:16:01 +0000 (18:16 -0500)
From-SVN: r6904

gcc/cccp.c

index 506627326c3bcfd06d19ba0705a9f3deea81c4fa..b4ca117bdfd5d46256c7533243105e84ef83b90f 100644 (file)
@@ -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);