]> andersk Git - splint.git/blobdiff - src/symtable.c
Fixed anytype resolution.
[splint.git] / src / symtable.c
index f047a845bfec8f2366364fdac3b1fd46223f8f7c..636183f166a123ded105ff0f813348469b172197 100644 (file)
@@ -1,6 +1,6 @@
 /*
-** LCLint - annotation-assisted static program checker
-** Copyright (C) 1994-2001 University of Virginia,
+** Splint - annotation-assisted static program checker
+** Copyright (C) 1994-2002 University of Virginia,
 **         Massachusetts Institute of Technology
 **
 ** This program is free software; you can redistribute it and/or modify it
@@ -17,9 +17,9 @@
 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 ** MA 02111-1307, USA.
 **
-** For information on lclint: lclint-request@cs.virginia.edu
-** To report a bug: lclint-bug@cs.virginia.edu
-** For more information: http://lclint.cs.virginia.edu
+** For information on splint: info@splint.org
+** To report a bug: splint-bug@splint.org
+** For more information: http://www.splint.org
 */
 /*
 ** symtable.c
@@ -40,7 +40,7 @@
 **     20 January 1991
 */
 
-# include "lclintMacros.nf"
+# include "splintMacros.nf"
 # include "llbasic.h"
 # include "gram.h"
 # include "lclscan.h"
@@ -215,7 +215,7 @@ static /*@observer@*/ ltoken idTableEntry_getId (idTableEntry *x)
       return (x->info.var->id);
     }
 
-  BADBRANCH;
+  BADBRANCHRET (ltoken_undefined);
 }
 
 /*@only@*/ symtable
@@ -519,7 +519,7 @@ symtable_enterType (symtable stable, /*@only@*/ typeInfo ti)
 
   /* symtable_disp (stable); */
 
-  if (k != SPE_GLOBAL && k != SPE_INVALID)     /* fixed for LCLint */
+  if (k != SPE_GLOBAL && k != SPE_INVALID)     /* fixed for Splint */
     {
       llbug (message ("%q: symtable_enterType: expect global scope. (type: %s)",
                      ltoken_unparseLoc (ti->id),
@@ -1306,7 +1306,7 @@ parseLine (char *line, inputStream srce, mapping map)
        }
       else
        {
-         /* evans 2001-05-27: detected by lclint after fixing external alias bug. */
+         /* evans 2001-05-27: detected by splint after fixing external alias bug. */
          if (op->name != NULL) 
            {
              ltoken_free (op->name->content.opid); 
This page took 0.370109 seconds and 4 git commands to generate.