aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Sema/warn-double-promotion.cpp
blob: 886911244fbd747c7d1172c8264fb498fd157216 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
// RUN: %clang_cc1 -triple x86_64-apple-darwin -verify -fsyntax-only %s -Wdouble-promotion

using LongDouble = long double;

double ReturnDoubleFromFloatWithExplicitCast(float f) {
  return static_cast<double>(f);
}

long double ReturnLongDoubleFromFloatWithExplicitCast(float f) {
  return static_cast<long double>(f);
}

long double ReturnLongDoubleFromDoubleWithExplicitCast(double d) {
  return static_cast<long double>(d);
}

double ReturnDoubleFromFloatWithExplicitListInitialization(float f) {
  return double{f};
}

long double ReturnLongDoubleFromFloatWithExplicitListInitialization(float f) {
  return LongDouble{f};
}

long double ReturnLongDoubleFromDoubleWithExplicitListInitialization(double d) {
  return LongDouble{d};
}

double ReturnDoubleFromFloatWithFunctionStyleCast(float f) {
  return double(f);
}

long double ReturnLongDoubleFromFloatWithFunctionStyleCast(float f) {
  return LongDouble(f);
}

long double ReturnLongDoubleFromDoubleWithFunctionStyleCast(double d) {
  return LongDouble(d);
}

void InitializationWithParens(float f, double d) {
  {
    double d(f);  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
    long double ld0(f);  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
    long double ld1(d);  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
  }
  {
    double d(static_cast<double>(f));
    long double ld0(static_cast<long double>(f));
    long double ld1(static_cast<long double>(d));
  }
  {
    double d(double{f});
    long double ld0(LongDouble{f});
    long double ld1(LongDouble{d});
  }
  {
    double d((double(f)));
    long double ld0((LongDouble(f)));
    long double ld1((LongDouble(d)));
  }
}

void InitializationWithBraces(float f, double d) {
  {
    double d{f};  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
    long double ld0{f};  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
    long double ld1{d};  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
  }
  {
    double d{static_cast<double>(f)};
    long double ld0{static_cast<long double>(f)};
    long double ld1{static_cast<long double>(d)};
  }
  {
    double d{double{f}};
    long double ld0{LongDouble{f}};
    long double ld1{LongDouble{d}};
  }
  {
    double d{double(f)};
    long double ld0{LongDouble(f)};
    long double ld1{LongDouble(d)};
  }
}

void Assignment(float f, double d, long double ld) {
  d = static_cast<double>(f);
  ld = static_cast<long double>(f);
  ld = static_cast<long double>(d);
  d = double{f};
  ld = LongDouble{f};
  ld = LongDouble{d};
  d = double(f);
  ld = LongDouble(f);
  ld = LongDouble(d);
}

void AssignmentWithExtraParens(float f, double d, long double ld) {
  d = static_cast<double>((f));
  ld = static_cast<long double>((f));
  ld = static_cast<long double>((d));
  d = double{(f)};
  ld = LongDouble{(f)};
  ld = LongDouble{(d)};
  d = double((f));
  ld = LongDouble((f));
  ld = LongDouble((d));
}

void AssignmentWithExtraBraces(float f, double d, long double ld) {
  d = double{{f}};  // expected-warning{{too many braces around scalar initializer}}
  ld = LongDouble{{f}};  // expected-warning{{too many braces around scalar initializer}}
  ld = LongDouble{{d}};  // expected-warning{{too many braces around scalar initializer}}
}

extern void DoubleParameter(double);
extern void LongDoubleParameter(long double);

void ArgumentPassing(float f, double d) {
  DoubleParameter(static_cast<double>(f));
  LongDoubleParameter(static_cast<long double>(f));
  LongDoubleParameter(static_cast<long double>(d));
  DoubleParameter(double{f});
  LongDoubleParameter(LongDouble{f});
  LongDoubleParameter(LongDouble{d});
  DoubleParameter(double(f));
  LongDoubleParameter(LongDouble(f));
  LongDoubleParameter(LongDouble(d));
}

void BinaryOperator(float f, double d, long double ld) {
  f = static_cast<double>(f) * d;
  f = d * static_cast<double>(f);
  f = static_cast<long double>(f) * ld;
  f = ld * static_cast<long double>(f);
  d = static_cast<long double>(d) * ld;
  d = ld * static_cast<long double>(d);
  f = double{f} * d;
  f = d * double{f};
  f = LongDouble{f} * ld;
  f = ld * LongDouble{f};
  d = LongDouble{d} * ld;
  d = ld * LongDouble{d};
  f = double(f) * d;
  f = d * double(f);
  f = LongDouble(f) * ld;
  f = ld * LongDouble(f);
  d = LongDouble(d) * ld;
  d = ld * LongDouble(d);
}

void MultiplicationAssignment(float f, double d, long double ld) {
  d *= static_cast<double>(f);
  ld *= static_cast<long double>(f);
  ld *= static_cast<long double>(d);
  d *= double{f};
  ld *= LongDouble{f};
  ld *= LongDouble{d};
  d *= double(f);
  ld *= LongDouble(f);
  ld *= LongDouble(d);
}

struct ConstructWithDouble {
  ConstructWithDouble(double);
};

struct ConstructWithLongDouble {
  ConstructWithLongDouble(long double);
};

void Construct(float f, double d) {
  ConstructWithDouble{f};  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
  ConstructWithLongDouble{f};  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
  ConstructWithLongDouble{d};  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
  ConstructWithDouble{static_cast<double>(f)};
  ConstructWithLongDouble{static_cast<long double>(f)};
  ConstructWithLongDouble{static_cast<long double>(d)};
  ConstructWithDouble{double{f}};
  ConstructWithLongDouble{LongDouble{f}};
  ConstructWithLongDouble{LongDouble{d}};
  ConstructWithDouble{double(f)};
  ConstructWithLongDouble{LongDouble(f)};
  ConstructWithLongDouble{LongDouble(d)};
}

template <class T> T ReturnTFromFloat(float f) {
  return f;  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}} \
             // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
}

template <class T> T ReturnTFromDouble(double d) {
  return d;  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
}

template <class T> T ReturnTFromFloatWithStaticCast(float f) {
  return static_cast<T>(f);
}

template <class T> T ReturnTFromDoubleWithStaticCast(double d) {
  return static_cast<T>(d);
}

template <class T> T ReturnTFromFloatWithExplicitListInitialization(float f) {
  return T{f};
}

template <class T> T ReturnTFromDoubleWithExplicitListInitialization(double d) {
  return T{d};
}

template <class T> T ReturnTFromFloatWithFunctionStyleCast(float f) {
  return T(f);
}

template <class T> T ReturnTFromDoubleWithFunctionStyleCast(double d) {
  return T(d);
}

void TestTemplate(float f, double d) {
  ReturnTFromFloat<double>(f);  // expected-note{{in instantiation of function template specialization 'ReturnTFromFloat<double>' requested here}}
  ReturnTFromFloat<long double>(f);  // expected-note{{in instantiation of function template specialization 'ReturnTFromFloat<long double>' requested here}}
  ReturnTFromDouble<long double>(d);  // expected-note{{in instantiation of function template specialization 'ReturnTFromDouble<long double>' requested here}}
  ReturnTFromFloatWithStaticCast<double>(f);
  ReturnTFromFloatWithStaticCast<long double>(f);
  ReturnTFromDoubleWithStaticCast<long double>(d);
  ReturnTFromFloatWithExplicitListInitialization<double>(f);
  ReturnTFromFloatWithExplicitListInitialization<long double>(f);
  ReturnTFromDoubleWithExplicitListInitialization<long double>(d);
  ReturnTFromFloatWithFunctionStyleCast<double>(f);
  ReturnTFromFloatWithFunctionStyleCast<long double>(f);
  ReturnTFromDoubleWithFunctionStyleCast<long double>(d);
}

struct MemberInitializerListParens {
  double m_d;
  long double m_ld0;
  long double m_ld1;
  MemberInitializerListParens(float f, double d):
    m_d(f),  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
    m_ld0(f),  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
    m_ld1(d)  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
  {}
};

struct MemberInitializerListBraces {
  double m_d;
  long double m_ld0;
  long double m_ld1;
  MemberInitializerListBraces(float f, double d):
    m_d{f},  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'double'}}
    m_ld0{f},  // expected-warning{{implicit conversion increases floating-point precision: 'float' to 'long double'}}
    m_ld1{d}  // expected-warning{{implicit conversion increases floating-point precision: 'double' to 'long double'}}
  {}
};