source:
CIVL/mods/dev.civl.com/examples/mem/readset/call2.cvl@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 324 bytes | |
| Rev | Line | |
|---|---|---|
| [4501911] | 1 | #include<mem.cvh> |
| 2 | int x,y,z; | |
| 3 | ||
| 4 | int f(int x, int y) { | |
| 5 | return x + y + z; | |
| 6 | } | |
| 7 | ||
| 8 | int main() { | |
| 9 | x = 0, y = 0, z = 0; | |
| 10 | $read_set_push(); | |
| 11 | int a = f(x, y); | |
| 12 | $mem m = $read_set_pop(); | |
| 13 | $mem oracle = ($mem)&x; | |
| 14 | ||
| 15 | oracle = $mem_union(oracle, ($mem)&y); | |
| 16 | oracle = $mem_union(oracle, ($mem)&z); | |
| 17 | $assert($mem_equals(m, oracle)); | |
| 18 | } |
Note:
See TracBrowser
for help on using the repository browser.
