diff options
Diffstat (limited to 'validation/optim/kill-stores2.c')
| -rw-r--r-- | validation/optim/kill-stores2.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/validation/optim/kill-stores2.c b/validation/optim/kill-stores2.c new file mode 100644 index 00000000..861b5ece --- /dev/null +++ b/validation/optim/kill-stores2.c @@ -0,0 +1,17 @@ +extern void def(int *); + +static void foo(void) +{ + int c; + def(&c); + if (c) + c = c; +} + +/* + * check-name: kill-stores2 + * check-command: test-linearize $file + * + * check-output-ignore + * check-output-excludes: store\\. + */ |
