diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
commit | 01af97d3b23bded2b2b21af19bbc6e4cce49e5b3 (patch) | |
tree | 64a10f4c4154739d4a8191d7e1b52ce497f4ebd6 /test/Sema/knr-def-call.c | |
parent | c3b054d250cdca485c71845089c316e10610ebad (diff) |
Diffstat (limited to 'test/Sema/knr-def-call.c')
-rw-r--r-- | test/Sema/knr-def-call.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Sema/knr-def-call.c b/test/Sema/knr-def-call.c index d054a04765054..6243af6193989 100644 --- a/test/Sema/knr-def-call.c +++ b/test/Sema/knr-def-call.c @@ -36,6 +36,8 @@ void proto(x) } void use_proto() { - proto(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} - (&proto)(42.0); // expected-warning{{implicit conversion turns literal floating-point number into integer}} + 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}} } |