]> andersk Git - splint.git/blobdiff - src/constraintList.c
Removed some .out files.
[splint.git] / src / constraintList.c
index baa03af96ae8542d4fdf760436739dceddf6482a..26dbaa3bc977fda29bf85a76f9b18ded3cc7a02b 100644 (file)
@@ -257,6 +257,19 @@ constraintList constraintList_preserveOrig (constraintList c)
   return c;
 }
 
+constraintList constraintList_addGeneratingExpr (constraintList c, exprNode e)
+{
+  DPRINTF ((message ("entering constraintList_addGeneratingExpr for %s ", exprNode_unparse(e) ) ));
+  
+  constraintList_elements (c, el)
+  {
+    DPRINTF ((message ("setting generatingExpr for %s to %s", constraint_print(el), exprNode_unparse(e) )  ));
+    el = constraint_addGeneratingExpr (el, e);
+  }
+  end_constraintList_elements;
+  return c;
+}
+
 constraintList constraintList_doFixResult (constraintList postconditions, exprNode fcnCall)
 {
   constraintList ret;
This page took 0.032009 seconds and 4 git commands to generate.