summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/ConditionGeneration.cs
diff options
context:
space:
mode:
authorGravatar akashlal <unknown>2011-03-21 13:41:27 +0000
committerGravatar akashlal <unknown>2011-03-21 13:41:27 +0000
commit7d8f0f0c6c451dffe84e1d3d723a6d06833087ad (patch)
tree4a4084cff19bbc26c8e79da4878d0dab3fcd2768 /Source/VCGeneration/ConditionGeneration.cs
parentb32afd1cc5b08a6320a3478d5be13deae7de6adf (diff)
Print recorded value of any type
Diffstat (limited to 'Source/VCGeneration/ConditionGeneration.cs')
-rw-r--r--Source/VCGeneration/ConditionGeneration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/ConditionGeneration.cs b/Source/VCGeneration/ConditionGeneration.cs
index 02af08ad..2e279479 100644
--- a/Source/VCGeneration/ConditionGeneration.cs
+++ b/Source/VCGeneration/ConditionGeneration.cs
@@ -168,7 +168,7 @@ namespace Microsoft.Boogie {
{
var cmd = getTraceCmd(loc);
var calleeName = getCalledProcName(cmd);
- if (calleeName == VC.StratifiedVCGen.recordArgProcName && CommandLineOptions.Clo.StratifiedInlining > 0)
+ if (calleeName.StartsWith(VC.StratifiedVCGen.recordProcName) && CommandLineOptions.Clo.StratifiedInlining > 0)
{
Contract.Assert(calleeCounterexamples[loc].args.Count == 1);
var arg = calleeCounterexamples[loc].args[0];