blob: 69776e0f14c35cda59086d7d5fe793663ac4d55b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
int foo(int a, int b)
{
int x;
int i;
if (a)
i = 0;
else
i = 1;
x = 0;
if (b)
x = i;
return x;
}
/*
* check-name: broken-phi02
* check-description:
* This is an indirect test to check correctness of phi-node placement.
* The misplaced phi-node for 'i' (not at the meet point but where 'i'
* is used) causes a missed select-conversion at later stage.
*
* check-command: test-linearize -Wno-decl $file
* check-known-to-fail
* check-output-ignore
* check-output-contains: select\\.
*/
|