aboutsummaryrefslogtreecommitdiff
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/knr-def-call.c b/test/Sema/knr-def-call.c
index f41275d1e618..80ad0d820b1a 100644
--- a/test/Sema/knr-def-call.c
+++ b/test/Sema/knr-def-call.c
@@ -36,6 +36,6 @@ void proto(x)
}
void use_proto() {
- 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}}
+ proto(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
+ (&proto)(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
}