summaryrefslogtreecommitdiff
path: root/Source/BoogieDriver
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2012-05-29 11:40:50 -0700
committerGravatar qadeer <qadeer@microsoft.com>2012-05-29 11:40:50 -0700
commit80f21079d9b8bdb92cdf3dd206dbe2b5049d52e0 (patch)
tree37b9d8a1c4b549146c1852b077be0ab1c4b5a636 /Source/BoogieDriver
parent37cdf90fc8d8fb0ddfb32d5017fecc8fa10346a6 (diff)
Removed program argument from VerifyImplementation. It is redundant since the constructor of ConditionGeneration
takes a program reference and stashes it in a field.
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r--Source/BoogieDriver/BoogieDriver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.cs b/Source/BoogieDriver/BoogieDriver.cs
index 0911cbd3..44adce15 100644
--- a/Source/BoogieDriver/BoogieDriver.cs
+++ b/Source/BoogieDriver/BoogieDriver.cs
@@ -701,7 +701,7 @@ namespace Microsoft.Boogie {
Console.WriteLine();
}
else {
- outcome = vcgen.VerifyImplementation(impl, program, out errors);
+ outcome = vcgen.VerifyImplementation(impl, out errors);
if (CommandLineOptions.Clo.ExtractLoops && vcgen is VCGen && errors != null) {
for (int i = 0; i < errors.Count; i++) {
errors[i] = (vcgen as VCGen).extractLoopTrace(errors[i], impl.Name, program, extractLoopMappingInfo);