diff options
| author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-09-11 12:25:36 +0200 |
|---|---|---|
| committer | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | 2017-11-13 14:16:51 +0100 |
| commit | 6e3ab84b12b2a0c783799f21f4413b610a5f2093 (patch) | |
| tree | ae417c5dece4c3aa2e40a4e6ef01c53a81c47734 /validation/mem2reg/cond-expr5.c | |
| parent | 22eaf158a163d38f724df20efdf8a5e5ee68c58e (diff) | |
| download | sparse-dev-6e3ab84b12b2a0c783799f21f4413b610a5f2093.tar.gz | |
add testcase for mem2reg/SSA conversion
Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Diffstat (limited to 'validation/mem2reg/cond-expr5.c')
| -rw-r--r-- | validation/mem2reg/cond-expr5.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/validation/mem2reg/cond-expr5.c b/validation/mem2reg/cond-expr5.c new file mode 100644 index 00000000..6c1e1c34 --- /dev/null +++ b/validation/mem2reg/cond-expr5.c @@ -0,0 +1,18 @@ +int foo(int p, int q, int a) +{ + if (p) + a = 0; + if (q) + a = 1; + + return a; +} + +/* + * check-name: cond-expr5 + * check-command: test-linearize -Wno-decl -fdump-ir=mem2reg $file + * check-output-ignore + * check-output-excludes: load\\. + * check-output-excludes: store\\. + * check-output-pattern(2): phi\\. + */ |
