summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGravatar Valentin Wüstholz <wuestholz@gmail.com>2015-11-20 11:24:17 -0600
committerGravatar Valentin Wüstholz <wuestholz@gmail.com>2015-11-20 11:24:17 -0600
commitf19110ec25d4ee962558627150d22e4c8a26a2a0 (patch)
tree89c0c181cd72adc4fe0f488e8b128bf00da4b501 /Source/Core
parent5bb7ad4c69ed1c782e50272d37bf116007a52f4c (diff)
Add simplified may-unverified analysis and instrumentation.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Absy.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs
index 8be4f24e..8a8558bf 100644
--- a/Source/Core/Absy.cs
+++ b/Source/Core/Absy.cs
@@ -2241,6 +2241,7 @@ namespace Microsoft.Boogie {
}
public class Incarnation : LocalVariable {
public int incarnationNumber;
+ public readonly Variable OriginalVariable;
public Incarnation(Variable/*!*/ var, int i) :
base(
var.tok,
@@ -2248,6 +2249,7 @@ namespace Microsoft.Boogie {
) {
Contract.Requires(var != null);
incarnationNumber = i;
+ OriginalVariable = var;
}
}