compiler options for call map debugging
[IRC.git] / Robust / src / Analysis / OwnershipAnalysis / ParameterDecomposition.java
index 2015f367eda79028b8cdf258a79a101361d1c54a..5707abab4a33a2ce9019ed68af3ec75565cd24ba 100644 (file)
@@ -58,10 +58,10 @@ public class ParameterDecomposition {
 
     // make copies of the graphs so that resolveMethodCall can
     // destroy the graph while calculating the stuff we want
-    this.ogCallee = new OwnershipGraph( oa.allocationDepth, oa.typeUtil );
+    this.ogCallee = new OwnershipGraph();
     this.ogCallee.merge( cee );
 
-    this.ogCaller = new OwnershipGraph( oa.allocationDepth, oa.typeUtil );
+    this.ogCaller = new OwnershipGraph();
     this.ogCaller.merge( cer );
 
     allocOutputStructs();