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