]> andersk Git - splint.git/blobdiff - src/flagSpec.c
Fixed previously ignored splintme warnings in loopHeuristics.c
[splint.git] / src / flagSpec.c
index eb634839088b485be572730f9f97852e7b7fa3a5..e2b2d9e336e052573a43c7a16863487ed8ffe0a4 100644 (file)
@@ -1,6 +1,6 @@
 /*
 ** Splint - annotation-assisted static program checker
-** Copyright (C) 1994-2002 University of Virginia,
+** Copyright (C) 1994-2003 University of Virginia,
 **         Massachusetts Institute of Technology
 **
 ** This program is free software; you can redistribute it and/or modify it
 ** 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 information on splint: info@splint.org
+** To report a bug: splint-bug@splint.org
 ** For more information: http://www.splint.org
 */
 /*
 ** flagSpec.c
 */
 
-# include "lclintMacros.nf"
+# include "splintMacros.nf"
 # include "basic.h"
 
 static /*@only@*/ flagSpecItem flagSpecItem_create (/*@only@*/ cstring fname)
 {
-  flagSpecItem res = (flagSpecItem) dmalloc (sizeof (*res));
+  flagSpecItem res = (flagSpecItem) dmalloc (sizeof (*res));\r
+  DPRINTF (("Creating item: [%p]", fname));\r
+  DPRINTF (("The name is: %s", fname));\r
+
   res->name = fname;
   res->code = flags_identifyFlag (fname);
   /* Invalid flag okay for now... */
@@ -48,14 +51,16 @@ static /*@only@*/ flagSpec flagSpec_create (/*@only@*/ flagSpecItem fitem,
 {
   flagSpec res = (flagSpec) dmalloc (sizeof (*res));
   res->tspec = fitem;
-  res->trest = frest;
+  res->trest = frest;\r
+  DPRINTF (("New flag spec: %s", flagSpec_unparse (res)));
   return res;
 }
 
 flagSpec flagSpec_createPlain (cstring fname)
 {
-  flagSpecItem fitem = flagSpecItem_create (fname);
-  flagSpec res = flagSpec_create (fitem, flagSpec_undefined);
+  flagSpecItem fitem = flagSpecItem_create (fname);\r
+    flagSpec res = flagSpec_create (fitem, flagSpec_undefined);
+       DPRINTF (("New flag spec: %s", flagSpec_unparse (res)));\r
   return res;
 }
 
This page took 0.034377 seconds and 4 git commands to generate.