/cp
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 May 2015 18:43:40 +0000 (18:43 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 May 2015 18:43:40 +0000 (18:43 +0000)
2015-05-01  Paolo Carlini  <paolo.carlini@oracle.com>
    Prathamesh Kulharni  <prathamesh.kulkarni@linaro.org>

PR c++/65858
* typeck2.c (check_narrowing): Set ok = true when pedwarn returns
false.

/testsuite
2015-05-01  Paolo Carlini  <paolo.carlini@oracle.com>
    Prathamesh Kulharni  <prathamesh.kulkarni@linaro.org>

PR c++/65858
* g++.dg/cpp0x/Wnarrowing4.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@222699 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/typeck2.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/Wnarrowing4.C [new file with mode: 0644]

index 14279fe..65cb5be 100644 (file)
@@ -1,3 +1,10 @@
+2015-05-01  Paolo Carlini  <paolo.carlini@oracle.com>
+           Prathamesh Kulharni  <prathamesh.kulkarni@linaro.org>
+
+       PR c++/65858
+       * typeck2.c (check_narrowing): Set ok = true when pedwarn returns
+       false.
+
 2015-04-30  David Malcolm  <dmalcolm@redhat.com>
 
        * cp-tree.h (ARGUMENT_PACK_SELECT_ARG): Remove spurious
index 884957b..9a491aa 100644 (file)
@@ -959,9 +959,10 @@ check_narrowing (tree type, tree init, tsubst_flags_t complain)
       else if (complain & tf_error)
        {
          global_dc->pedantic_errors = 1;
-         pedwarn (EXPR_LOC_OR_LOC (init, input_location), OPT_Wnarrowing,
-                  "narrowing conversion of %qE from %qT to %qT inside { }",
-                  init, ftype, type);
+         if (!pedwarn (EXPR_LOC_OR_LOC (init, input_location), OPT_Wnarrowing,
+                       "narrowing conversion of %qE from %qT to %qT "
+                       "inside { }", init, ftype, type))
+           ok = true;
          global_dc->pedantic_errors = flag_pedantic_errors;
        }
     }
index 2aedc46..e6ccf47 100644 (file)
@@ -1,3 +1,9 @@
+2015-05-01  Paolo Carlini  <paolo.carlini@oracle.com>
+           Prathamesh Kulharni  <prathamesh.kulkarni@linaro.org>
+
+       PR c++/65858
+       * g++.dg/cpp0x/Wnarrowing4.C: New.
+
 2015-05-01  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
 
        * gcc.dg/20150120-1.c: New test.
diff --git a/gcc/testsuite/g++.dg/cpp0x/Wnarrowing4.C b/gcc/testsuite/g++.dg/cpp0x/Wnarrowing4.C
new file mode 100644 (file)
index 0000000..d2dd383
--- /dev/null
@@ -0,0 +1,6 @@
+// PR c++/65858
+// { dg-do compile { target c++11 } }
+// { dg-require-effective-target lto }
+// { dg-options "-flto -Wno-narrowing" }
+
+int x { 0.5 };