diff options
author | 2010-02-16 05:07:46 +0000 | |
---|---|---|
committer | 2010-02-16 05:07:46 +0000 | |
commit | 717eaee0063074b804098d3cfd44a7a3f822b064 (patch) | |
tree | 5ca65ed1265ed238195ad25476c9ab506d5a8360 /Source/VCGeneration | |
parent | f1d626d71fef69995f34daae4341473d597f5d27 (diff) |
Implemented block coalescing invoked right after type checking.
Controlled by the option /coalesceBlocks (default is to perform the optimization).
Diffstat (limited to 'Source/VCGeneration')
-rw-r--r-- | Source/VCGeneration/VC.ssc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/VC.ssc b/Source/VCGeneration/VC.ssc index 24104fb4..a9b47222 100644 --- a/Source/VCGeneration/VC.ssc +++ b/Source/VCGeneration/VC.ssc @@ -1754,7 +1754,7 @@ namespace VC #endregion
if (CommandLineOptions.Clo.LiveVariableAnalysis) {
- Microsoft.Boogie.LiveVariableAnalysis.ComputeLiveVariables(program, impl);
+ Microsoft.Boogie.LiveVariableAnalysis.ComputeLiveVariables(impl);
}
Convert2PassiveCmd(impl);
|