diff options
author | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-10-15 17:10:06 +1100 |
---|---|---|
committer | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-10-15 17:10:06 +1100 |
commit | be1de4be954c80875ad4108e0a33e8e131b2f2c0 (patch) | |
tree | 1fbbecf276bf7c7bdcbb4dd446099d6d90eaa516 /clang/test/SemaCXX/warn-literal-conversion.cpp | |
parent | c4626a62754862d20b41e8a46a3574264ea80e6d (diff) | |
parent | f1bd2e48c5324d3f7cda4090c87f8a5b6f463ce2 (diff) |
Merge branch 'master' of ssh://bitbucket.org/czan/honours
Diffstat (limited to 'clang/test/SemaCXX/warn-literal-conversion.cpp')
-rw-r--r-- | clang/test/SemaCXX/warn-literal-conversion.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/warn-literal-conversion.cpp b/clang/test/SemaCXX/warn-literal-conversion.cpp new file mode 100644 index 0000000..5fcae5d --- /dev/null +++ b/clang/test/SemaCXX/warn-literal-conversion.cpp @@ -0,0 +1,40 @@ +// RUN: %clang_cc1 -fsyntax-only -Wliteral-conversion -verify %s + +void foo(int y); + +// Warn when a literal float or double is assigned or bound to an integer. +void test0() { + // Float + int y0 = 1.2222F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y1 = (1.2222F); // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y2 = (((1.2222F))); // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y3 = 12E-1F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y4 = 1.23E1F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + // Double + int y5 = 1.2222; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y6 = 12E-1; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y7 = 1.23E1; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + int y8 = (1.23E1); // expected-warning {{implicit conversion turns literal floating-point number into integer}} + + // Test assignment to an existing variable. + y8 = 2.22F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + + // Test direct initialization. + int y9(1.23F); // expected-warning {{implicit conversion turns literal floating-point number into integer}} + + // Test passing a literal floating-point value to a function that takes an integer. + foo(1.2F); // expected-warning {{implicit conversion turns literal floating-point number into integer}} + + int y10 = -1.2F; // expected-warning {{implicit conversion turns literal floating-point number into integer}} + + // -Wconversion-literal does NOT catch const values. + // (-Wconversion DOES catch them.) + static const float sales_tax_rate = .095F; + int z = sales_tax_rate; + foo(sales_tax_rate); + + // Expressions, such as those that indicate rounding-down, should NOT produce warnings. + int x = 24 * 0.5; + int y = (24*60*60) * 0.25; + int pennies = 123.45 * 100; +} |