source:
CIVL/mods/dev.civl.abc/examples/c/pointsToAnalysis/branchInsensitive.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 128 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 1 | int main() { |
| 2 | int a, b, c; | |
| 3 | int * p, * q; | |
| 4 | ||
| 5 | if (a == b) { | |
| 6 | p = &a; | |
| 7 | q = &b; | |
| 8 | } else { | |
| 9 | p = &c; | |
| 10 | q = &a; | |
| 11 | } | |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
