diff options
Diffstat (limited to 'validation/optim/setcc-mask.c')
| -rw-r--r-- | validation/optim/setcc-mask.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/validation/optim/setcc-mask.c b/validation/optim/setcc-mask.c new file mode 100644 index 00000000..c8df1049 --- /dev/null +++ b/validation/optim/setcc-mask.c @@ -0,0 +1,19 @@ +int foo (int a) +{ + return ((a == 0) & 1) == (a == 0); +} + +/* + * check-name: setcc-mask + * check-command: test-linearize -Wno-decl $file + * check-known-to-fail + * + * check-output-start +foo: +.L0: + <entry-point> + ret.32 $1 + + + * check-output-end + */ |
