summaryrefslogtreecommitdiff
path: root/Test/og/parallel2.bpl
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2013-12-16 12:32:55 -0800
committerGravatar qadeer <unknown>2013-12-16 12:32:55 -0800
commit67734e425160c5e10734bbb39ba8855f77f01b8c (patch)
tree313a3b9cb8e1c882500d5b2d36b4a8d0b1346343 /Test/og/parallel2.bpl
parent9b038216fd54d8a544db6425982f5f2cfefc29e8 (diff)
added syntax for par call and ParCallCmd
Diffstat (limited to 'Test/og/parallel2.bpl')
-rw-r--r--Test/og/parallel2.bpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/og/parallel2.bpl b/Test/og/parallel2.bpl
index b963fe72..6cc85131 100644
--- a/Test/og/parallel2.bpl
+++ b/Test/og/parallel2.bpl
@@ -8,8 +8,8 @@ procedure {:entrypoint} {:yields} main()
var {:linear "tid"} j: int;
call i := Allocate();
call j := Allocate();
- call i := t(i) | j := t(j);
- call i := u(i) | j := u(j);
+ par i := t(i) | j := t(j);
+ par i := u(i) | j := u(j);
}
procedure {:yields} {:stable} t({:linear "tid"} i': int) returns ({:linear "tid"} i: int)