blob: 62ac6c15d1bb01bc72b4eb25729177e053364e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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-known-to-fail
*
* check-output-ignore
* check-output-excludes: load\\.
* check-output-excludes: store\\.
* check-output-excludes: phi\\..*, .*, .*
* check-output-pattern(3): phi\\.
* check-output-pattern(5): phisrc\\.
*/
|