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
|
/* Header file for fold-vec-cmp-char*.c tests. Used to verify codegen results
for vec_cmp{eq,ge,gt,le,lt,ne} builtins. */
#include <altivec.h>
vector bool char
test3_eq (vector signed char x, vector signed char y)
{
return vec_cmpeq (x, y);
}
vector bool char
test6_eq (vector unsigned char x, vector unsigned char y)
{
return vec_cmpeq (x, y);
}
vector bool char
test3_ge (vector signed char x, vector signed char y)
{
return vec_cmpge (x, y);
}
vector bool char
test6_ge (vector unsigned char x, vector unsigned char y)
{
return vec_cmpge (x, y);
}
vector bool char
test3_gt (vector signed char x, vector signed char y)
{
return vec_cmpgt (x, y);
}
vector bool char
test6_gt (vector unsigned char x, vector unsigned char y)
{
return vec_cmpgt (x, y);
}
vector bool char
test3_le (vector signed char x, vector signed char y)
{
return vec_cmple (x, y);
}
vector bool char
test6_le (vector unsigned char x, vector unsigned char y)
{
return vec_cmple (x, y);
}
vector bool char
test3_lt (vector signed char x, vector signed char y)
{
return vec_cmplt (x, y);
}
vector bool char
test6_lt (vector unsigned char x, vector unsigned char y)
{
return vec_cmplt (x, y);
}
vector bool char
test3_ne (vector signed char x, vector signed char y)
{
return vec_cmpne (x, y);
}
vector bool char
test6_ne (vector unsigned char x, vector unsigned char y)
{
return vec_cmpne (x, y);
}
|