aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/optim/bool-simplify.c
blob: b872764ca8c4f62ec1cd9bd8c1172d2e0ccb8a19 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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;
}

// try again but with something true but != 1
int and_2(int a)
{
	return a && 2;
}

int or_2(int a)
{
	return a || 2;
}

/*
 * 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>
	setne.32    %r11 <- %arg1, $0
	ret.32      %r11


or_0:
.L4:
	<entry-point>
	setne.32    %r17 <- %arg1, $0
	ret.32      %r17


or_1:
.L6:
	<entry-point>
	ret.32      $1


and_2:
.L8:
	<entry-point>
	setne.32    %r29 <- %arg1, $0
	ret.32      %r29


or_2:
.L10:
	<entry-point>
	ret.32      $1


 * check-output-end
 */