diff options
author | Rustan Leino <leino@microsoft.com> | 2011-10-27 14:47:38 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2011-10-27 14:47:38 -0700 |
commit | 764cd110aa83468a8f57b2dd8980f71ebee0a7af (patch) | |
tree | d6fcbe50f7d85883dc1953365400afd8dba57b17 /Source/Core | |
parent | 7b4af4309de9ae134eac20af13a87f1036733e0d (diff) |
Boogie: removed unreachable or unused code
Diffstat (limited to 'Source/Core')
-rw-r--r-- | Source/Core/Absy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs index a9c41efb..0b40c86e 100644 --- a/Source/Core/Absy.cs +++ b/Source/Core/Absy.cs @@ -761,7 +761,7 @@ namespace Microsoft.Boogie { Graph<Block> g = ProcessLoops(impl);
CreateProceduresForLoops(impl, g, loopImpls, fullMap);
}
- catch (IrreducibleLoopException e)
+ catch (IrreducibleLoopException)
{
System.Diagnostics.Debug.Assert(!fullMap.ContainsKey(impl.Name));
fullMap[impl.Name] = null;
|