summaryrefslogtreecommitdiff
path: root/Source/Doomed
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2014-08-08 10:35:15 -0700
committerGravatar qadeer <unknown>2014-08-08 10:35:15 -0700
commitbbfe57fbf0c7ff2c2b01f6020a7fda199efe15d8 (patch)
treea76517313dcd31059cfe2cab6bdb157cbb6c9773 /Source/Doomed
parenta645d5392e5d23c01fa17d543fc70f428794159c (diff)
fixed codexpr bug reported by Michael Emmi; removed special handling of codexpr in InjectPostConditions
Diffstat (limited to 'Source/Doomed')
-rw-r--r--Source/Doomed/VCDoomed.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Doomed/VCDoomed.cs b/Source/Doomed/VCDoomed.cs
index 9f1d8290..6dd3b5ca 100644
--- a/Source/Doomed/VCDoomed.cs
+++ b/Source/Doomed/VCDoomed.cs
@@ -616,7 +616,7 @@ namespace VC {
InjectPreconditions(impl, cc);
// append postconditions, starting in exitBlock and continuing into other blocks, if needed
- exitBlock = InjectPostConditions(impl, exitBlock, gotoCmdOrigins);
+ InjectPostConditions(impl, exitBlock, gotoCmdOrigins);
}
#endregion
}