1 // RUN: %clang_cc1 %s -verify -Wno-constant-conversion
2 // RUN: %clang_cc1 %s -verify -Wno-constant-conversion -Wno-implicit-int-float-conversion -Wimplicit-const-int-float-conversion
3 // RUN: %clang_cc1 %s -DNONCONST=1 -verify -Wno-constant-conversion -Wimplicit-int-float-conversion
6 long testReturn(long a
, float b
) {
7 return a
+ b
; // expected-warning {{implicit conversion from 'long' to 'float' may lose precision}}
11 void testAssignment(void) {
13 double b
= 222222222222L;
15 float ff
= 222222222222L; // expected-warning {{changes value from 222222222222 to 222222221312}}
16 float ffff
= 222222222222UL; // expected-warning {{changes value from 222222222222 to 222222221312}}
18 long l
= 222222222222L;
20 float fff
= l
; // expected-warning {{implicit conversion from 'long' to 'float' may lose precision}}
24 void testExpression(void) {
27 float b
= 222222222222L + a
; // expected-warning {{changes value from 222222222222 to 222222221312}}
29 float g
= 22222222 + 22222222;
30 float c
= 22222222 + 22222223; // expected-warning {{implicit conversion from 'int' to 'float' changes value from 44444445 to 44444444}}
34 float d
= i
+ a
; // expected-warning {{implicit conversion from 'int' to 'float' may lose precision}}
41 void testCNarrowing(void) {
42 // Since this is a C file. C++11 narrowing is not in effect.
43 // In this case, we should issue warnings.
44 float a
= {222222222222L}; // expected-warning {{changes value from 222222222222 to 222222221312}}
46 long b
= 222222222222L;
48 float c
= {b
}; // expected-warning {{implicit conversion from 'long' to 'float' may lose precision}}