summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGravatar Shaz Qadeer <qadeer@microsoft.com>2015-09-28 09:47:27 -0700
committerGravatar Shaz Qadeer <qadeer@microsoft.com>2015-09-28 09:47:27 -0700
commit7a2aec84f1d924086b6f8e0f3dcbde036e12345c (patch)
tree71bab46500300b795a85659d9aa2299728f106d1 /Source/Core
parent80e6c54ccfeac0a2ae07c18f3c8f21970e483185 (diff)
update
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/CommandLineOptions.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index 2dda1dd9..f4cba1dc 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -588,7 +588,7 @@ namespace Microsoft.Boogie {
}
}
- public string OwickiGriesDesugaredOutputFile = null;
+ public string CivlDesugaredFile = null;
public bool TrustAtomicityTypes = false;
public bool TrustNonInterference = false;
public int TrustLayersUpto = -1;
@@ -915,9 +915,9 @@ namespace Microsoft.Boogie {
}
return true;
- case "OwickiGries":
+ case "CivlDesugaredFile":
if (ps.ConfirmArgumentCount(1)) {
- OwickiGriesDesugaredOutputFile = args[ps.i];
+ CivlDesugaredFile = args[ps.i];
}
return true;