]> andersk Git - splint.git/blobdiff - src/constraintList.c
Made allocations involving sizeof work correctly (test/malloc.c).
[splint.git] / src / constraintList.c
index c834ec65f6d3e1a284a87a7b949093e309050bde..ea2712149651648ca9e2dda3ad76196610e3f1e5 100644 (file)
@@ -635,39 +635,6 @@ void constraintList_dump (/*@observer@*/ constraintList c,  FILE *f)
   end_constraintList_elements; ;
 }
 
-//! don't use this!
-void constraintList_castConstraints (constraintList c, ctype tfrom, ctype tto)
-{
-  if (TRUE) /* flag to allow casting */ 
-    {
-      int fsize = ctype_getSize (tfrom);
-      int tsize = ctype_getSize (tto);
-
-      DPRINTF (("Sizes: [%s] [%s] %d / %d", ctype_unparse (tfrom),
-               ctype_unparse (tto), fsize, tsize));
-
-      if (fsize == tsize) 
-       {
-         return; /* Sizes match, no change to constraints */
-       }
-      else 
-       {
-         float scale = fsize / tsize;
-         
-         DPRINTF (("Scaling constraints by: %f", scale));
-
-         constraintList_elements (c, el)
-           {
-             DPRINTF (("Scale: %s", constraint_unparse (el)));
-             // constraint_scaleSize (el, scale);
-             DPRINTF (("   ==> %s", constraint_unparse (el)));
-           }
-         end_constraintList_elements; 
-       }
-    }
-}
-
-
 constraintList constraintList_sort (/*@returned@*/ constraintList ret)
 {
   if (constraintList_isUndefined(ret) )
This page took 0.052409 seconds and 4 git commands to generate.