blob: 803b0cc459b26e49d939f59f98cd30ef59a5d0f2 (
about) (
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
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
// floating-point overloads
__typeof__(0 + 0.0L) ld0;
long double &ldr = ld0;
__typeof__(0 + 0.0) d0;
double &dr = d0;
__typeof__(0 + 0.0f) f0;
float &fr = f0;
// integral promotions
signed char c0;
__typeof__(c0 + c0) c1;
int &cr = c1;
unsigned char uc0;
__typeof__(uc0 + uc0) uc1;
int &ucr = uc1;
short s0;
__typeof__(s0 + s0) s1;
int &sr = s1;
unsigned short us0;
__typeof__(us0 + us0) us1;
int &usr = us1;
// integral overloads
__typeof__(0 + 0UL) ul0;
unsigned long &ulr = ul0;
template<bool T> struct selector;
template<> struct selector<true> { typedef long type; };
template<> struct selector<false> {typedef unsigned long type; };
__typeof__(0U + 0L) ui_l0;
selector<(sizeof(long) > sizeof(unsigned int))>::type &ui_lr = ui_l0;
__typeof__(0 + 0L) l0;
long &lr = l0;
__typeof__(0 + 0U) u0;
unsigned &ur = u0;
__typeof__(0 + 0) i0;
int &ir = i0;
|