diff options
Diffstat (limited to 'validation/optim')
| -rw-r--r-- | validation/optim/bool-same-args.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/validation/optim/bool-same-args.c b/validation/optim/bool-same-args.c new file mode 100644 index 00000000..0ae4684e --- /dev/null +++ b/validation/optim/bool-same-args.c @@ -0,0 +1,12 @@ +static int ior(int a) { return a || a; } +static int and(int a) { return a && a; } + +/* + * check-name: bool-same-args + * check-command: test-linearize $file + * check-output-ignore + * + * check-output-excludes: or-bool\\. + * check-output-excludes: and-bool\\. + * check-output-contains: setne\\. + */ |
