blob: 61bfd99e2808e7cd0f9487ab991a2d424cda548e (
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
|
void funf(float);
void fund(double);
void funl(long double);
#define fung(X) _Generic(X, \
float: funf, \
default: fund, \
long double: funl) (X)
#define TEST(name, T) \
static void test ## name(T a) { return fung(a); }
TEST(f, float)
TEST(d, double)
TEST(l, long double)
/*
* check-name: generic-functions
* check-command: test-linearize $file
*
* check-output-start
testf:
.L0:
<entry-point>
call funf, %arg1
ret
testd:
.L2:
<entry-point>
call fund, %arg1
ret
testl:
.L4:
<entry-point>
call funl, %arg1
ret
* check-output-end
*/
|