diff options
Diffstat (limited to 'validation/linear')
| -rw-r--r-- | validation/linear/stray-phisrc.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/validation/linear/stray-phisrc.c b/validation/linear/stray-phisrc.c deleted file mode 100644 index e9f35c89..00000000 --- a/validation/linear/stray-phisrc.c +++ /dev/null @@ -1,25 +0,0 @@ -static int foo(int **g) -{ - int i = 1; - int *a[2]; - int **p; - - a[1] = &i; - if (g) - p = g; - else - p = &a[0]; - p += 1; // will point to a[1] = &i - if (!g) - **p = 0; - return i; -} - -/* - * check-name: stray phisrc - * check-command: test-linearize -Wno-decl $file - * check-known-to-fail - * - * check-output-ignore - * check-output-excludes: phisrc\\. - */ |
