diff options
author | akashlal <unknown> | 2010-07-07 19:26:46 +0000 |
---|---|---|
committer | akashlal <unknown> | 2010-07-07 19:26:46 +0000 |
commit | eb5feb60f7d1783a354c027642b3d15cad77c87d (patch) | |
tree | 171c74f66347283bfbd2948b532477bf6f027397 | |
parent | 2235d3dc9e090a1d4b13d653138838624c70ba26 (diff) |
Boogie: Bug fix for stratified inlining
-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 f5a57cf6..967d02c4 100644 --- a/Source/VCGeneration/VC.ssc +++ b/Source/VCGeneration/VC.ssc @@ -2061,7 +2061,7 @@ namespace VC int id = Int32.Parse(lop.label.Substring(prefix.Length + 1));
Hashtable! label2absy = getLabel2absy();
Absy cmd = label2absy[id] as Absy;
- label2absy.Remove(id);
+ //label2absy.Remove(id);
assert cmd != null;
AssumeCmd acmd = cmd as AssumeCmd;
|