summaryrefslogtreecommitdiff
path: root/Test/stratifiedinline/bar11.bpl
diff options
context:
space:
mode:
authorGravatar Checkmate50 <dgeisler50@gmail.com>2016-06-06 23:14:18 -0600
committerGravatar Checkmate50 <dgeisler50@gmail.com>2016-06-06 23:14:18 -0600
commitd652155ae013f36a1ee17653a8e458baad2d9c2c (patch)
tree067d600fe3cd1723afc11682935f0123a1eab653 /Test/stratifiedinline/bar11.bpl
parentd7fc0deb2ca6d7ebee094b6ea5430d9b41f163ec (diff)
Merging complete. Everything looks good *crosses fingers*
Diffstat (limited to 'Test/stratifiedinline/bar11.bpl')
-rw-r--r--Test/stratifiedinline/bar11.bpl66
1 files changed, 33 insertions, 33 deletions
diff --git a/Test/stratifiedinline/bar11.bpl b/Test/stratifiedinline/bar11.bpl
index b25d8451..913501cc 100644
--- a/Test/stratifiedinline/bar11.bpl
+++ b/Test/stratifiedinline/bar11.bpl
@@ -1,33 +1,33 @@
-// RUN: %boogie -stratifiedInline:1 -vc:i "%s" > "%t"
-// RUN: %diff "%s.expect" "%t"
-var x: int;
-var y: int;
-procedure boogie_si_record_int(x:int);
-
-procedure bar()
-modifies y;
-{
- y := y + 1;
- call boogie_si_record_int(y);
-}
-
-procedure foo()
-modifies x, y;
-{
- call boogie_si_record_int(x);
- x := x + 1;
- call bar();
- call bar();
- x := x + 1;
- call boogie_si_record_int(x);
-}
-
-procedure {:entrypoint} main()
-modifies x, y;
-{
- assume x == 0;
- assume x == y;
- call foo();
- assume x == y;
-}
-
+// RUN: %boogie -stratifiedInline:1 -vc:i "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+var x: int;
+var y: int;
+procedure boogie_si_record_int(x:int);
+
+procedure bar()
+modifies y;
+{
+ y := y + 1;
+ call boogie_si_record_int(y);
+}
+
+procedure foo()
+modifies x, y;
+{
+ call boogie_si_record_int(x);
+ x := x + 1;
+ call bar();
+ call bar();
+ x := x + 1;
+ call boogie_si_record_int(x);
+}
+
+procedure {:entrypoint} main()
+modifies x, y;
+{
+ assume x == 0;
+ assume x == y;
+ call foo();
+ assume x == y;
+}
+