summaryrefslogtreecommitdiffstats
path: root/test/Sema/knr-def-call.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/knr-def-call.c')
-rw-r--r--test/Sema/knr-def-call.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Sema/knr-def-call.c b/test/Sema/knr-def-call.c
index d054a04..6243af6 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}}
}
OpenPOWER on IntegriCloud