diff options
Diffstat (limited to 'test/Sema/knr-def-call.c')
-rw-r--r-- | test/Sema/knr-def-call.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Sema/knr-def-call.c b/test/Sema/knr-def-call.c index 6243af6193989..f41275d1e6184 100644 --- a/test/Sema/knr-def-call.c +++ b/test/Sema/knr-def-call.c @@ -36,8 +36,6 @@ void proto(x) } void use_proto() { - proto(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} \ - // expected-note {{this can be rewritten as an integer literal with the exact same value}} - (&proto)(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} \ - // expected-note {{this can be rewritten as an integer literal with the exact same value}} + proto(42.1); // expected-warning{{implicit conversion turns literal floating-point number into integer}} + (&proto)(42.1); // expected-warning{{implicit conversion turns literal floating-point number into integer}} } |