summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
authorGravatar akashlal <unknown>2014-04-06 12:01:48 +0530
committerGravatar akashlal <unknown>2014-04-06 12:01:48 +0530
commit55bdb8b4ba8c49654fae37d74b34cbc4597c08fb (patch)
tree50aa72bdec9b585ea0053c84b471516ba4917de2 /Source/Core/CommandLineOptions.cs
parent8f239eb00613e103a0ed762ce6584cf033d29d48 (diff)
Added option to avoid unrolling irreducible loops
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index e6f467c8..03e2ce17 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -593,6 +593,7 @@ namespace Microsoft.Boogie {
public bool PrintInlined = false;
public bool ExtractLoops = false;
public bool DeterministicExtractLoops = false;
+ public bool ExtractLoopsUnrollIrreducible = true; // unroll irreducible loops? (set programmatically)
public int StratifiedInlining = 0;
public string FixedPointEngine = null;
public int StratifiedInliningOption = 0;