diff options
Diffstat (limited to 'validation/optim')
| -rw-r--r-- | validation/optim/select-zero.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/validation/optim/select-zero.c b/validation/optim/select-zero.c new file mode 100644 index 00000000..ed737bff --- /dev/null +++ b/validation/optim/select-zero.c @@ -0,0 +1,16 @@ +static int sel0(int a) +{ + if (a) + return 0; + else + return a; +} + +/* + * check-name: select-zero + * check-command: test-linearize $file + * + * check-output-ignore + * check-output-contains: ret.32 *\\$0 + * check-output-excludes: select\\. + */ |
