diff options
Diffstat (limited to 'validation/optim')
| -rw-r--r-- | validation/optim/bool-simplify.c | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/validation/optim/bool-simplify.c b/validation/optim/bool-simplify.c new file mode 100644 index 00000000..e0ff1c2d --- /dev/null +++ b/validation/optim/bool-simplify.c @@ -0,0 +1,51 @@ +int and_0(int a) +{ + return a && 0; +} + +int and_1(int a) +{ + return a && 1; +} + +int or_0(int a) +{ + return a || 0; +} + +int or_1(int a) +{ + return a || 1; +} + +/* + * check-name: bool-simplify + * check-command: test-linearize -Wno-decl $file + * + * check-output-start +and_0: +.L0: + <entry-point> + ret.32 $0 + + +and_1: +.L2: + <entry-point> + ret.32 %arg1 + + +or_0: +.L4: + <entry-point> + ret.32 %arg1 + + +or_1: +.L6: + <entry-point> + ret.32 $1 + + + * check-output-end + */ |
