re PR c++/19565 (g++ does not warn about overflow in conversion but gcc does)
authorMark Mitchell <mark@codesourcery.com>
Fri, 14 Oct 2005 19:50:08 +0000 (19:50 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 14 Oct 2005 19:50:08 +0000 (19:50 +0000)
PR c++/19565
* g++.dg/warn/Wconversion1.C: New test.
* g++.dg/ext/packed4.C: Compile with -w.
* g++.dg/opt/20050511-1.C: Likewise.
* g++.old-deja/g++.other/warn4.C: Compiler with -Wconversion.

From-SVN: r105421

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/decl.c
gcc/cp/typeck2.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/packed4.C
gcc/testsuite/g++.dg/opt/20050511-1.C
gcc/testsuite/g++.dg/warn/Wconversion1.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.other/warn4.C

index 00e0af2a0830bfd4640bdbc77223dc6f4ce3f03a..7b2ff855d6460dbd85903660364387e4d3ca3c26 100644 (file)
@@ -1,3 +1,15 @@
+2005-10-14  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/19565
+       * call.c (convert_like_real): Rely on convert_and_check to issue
+       warnings about overflow and conversion to unsigned.
+       * decl.c (finish_enum): Use the location of the enumerators, not
+       the closing brace of the enumeration, when reporting warnings
+       about conversions.
+       (build_enumerator): Use error_mark_node for erroneous values.
+       * typeck2.c (digest_init): Remove reference to "signature pointer"
+       from comment.
+
 2005-10-14  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR c++/17796
index 924760534eddf7eaac4b883ca304921f13e92b81..fe8d62e6154b57436e21be002273cbb6aa8e8782 100644 (file)
@@ -4216,21 +4216,6 @@ convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
          else
            warning (0, "converting to %qT from %qT", t, TREE_TYPE (expr));
        }
-      /* And warn about assigning a negative value to an unsigned
-        variable.  */
-      else if (TYPE_UNSIGNED (t) && TREE_CODE (t) != BOOLEAN_TYPE)
-       {
-         if (TREE_CODE (expr) == INTEGER_CST && TREE_NEGATED_INT (expr))
-           {
-             if (fn)
-               warning (0, "passing negative value %qE for argument %P to %qD",
-                        expr, argnum, fn);
-             else
-               warning (0, "converting negative value %qE to %qT", expr, t);
-           }
-
-         overflow_warning (expr);
-       }
     }
 
   switch (convs->kind)
@@ -4430,8 +4415,13 @@ convert_like_real (conversion *convs, tree expr, tree fn, int argnum,
     default:
       break;
     }
-  return ocp_convert (totype, expr, CONV_IMPLICIT,
-                     LOOKUP_NORMAL|LOOKUP_NO_CONVERSION);
+
+  if (issue_conversion_warnings)
+    expr = convert_and_check (totype, expr);
+  else
+    expr = convert (totype, expr);
+
+  return expr;
 }
 
 /* Build a call to __builtin_trap.  */
index 7cc2fdedc4b72bdc006ede725c1ba14058224548..56c2d4da765bb676144aabbe8c17119e86ab3eb5 100644 (file)
@@ -9750,6 +9750,8 @@ finish_enum (tree enumtype)
 
          /* Update the minimum and maximum values, if appropriate.  */
          value = DECL_INITIAL (decl);
+         if (value == error_mark_node)
+           value = integer_zero_node;
          /* Figure out what the minimum and maximum values of the
             enumerators are.  */
          if (!minnode)
@@ -9852,9 +9854,14 @@ finish_enum (tree enumtype)
      type of the enumeration.  */
   for (values = TYPE_VALUES (enumtype); values; values = TREE_CHAIN (values))
     {
+      location_t saved_location;
+
       decl = TREE_VALUE (values);
+      saved_location = input_location;
+      input_location = DECL_SOURCE_LOCATION (decl);
       value = perform_implicit_conversion (underlying_type,
                                           DECL_INITIAL (decl));
+      input_location = saved_location;
 
       /* Do not clobber shared ints.  */
       value = copy_node (value);
@@ -9944,7 +9951,10 @@ build_enumerator (tree name, tree value, tree enumtype)
              overflowed |= !int_fits_type_p (value, TREE_TYPE (prev_value));
 
              if (overflowed)
-               error ("overflow in enumeration values at %qD", name);
+               {
+                 error ("overflow in enumeration values at %qD", name);
+                 value = error_mark_node;
+               }
            }
          else
            value = integer_zero_node;
index e9a61614f71a233d8bf46a4287a9650166e3db2b..42520e2f76779e4c7f895ad0881841b5361205a6 100644 (file)
@@ -695,10 +695,8 @@ digest_init (tree type, tree init)
        }
     }
 
-  /* Handle scalar types, including conversions,
-     and signature pointers and references.  */
-  if (SCALAR_TYPE_P (type)
-      || code == REFERENCE_TYPE)
+  /* Handle scalar types (including conversions) and references.  */
+  if (SCALAR_TYPE_P (type) || code == REFERENCE_TYPE)
     return convert_for_initialization (0, type, init, LOOKUP_NORMAL,
                                       "initialization", NULL_TREE, 0);
 
index fcb7bec7ece7adce7fae5a95004fb008f19ffd48..877bca8b75403985369bc0642db3dea4701030fa 100644 (file)
@@ -1,3 +1,11 @@
+2005-10-14  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/19565
+       * g++.dg/warn/Wconversion1.C: New test.
+       * g++.dg/ext/packed4.C: Compile with -w.
+       * g++.dg/opt/20050511-1.C: Likewise.
+       * g++.old-deja/g++.other/warn4.C: Compiler with -Wconversion.
+
 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
 
        * gfortran.dg/boz_5.f90: New test.
index 1ac9048d4e09e475a35d5eafb9ef3dadbdda3556..db1f5c992eea038124ea1779395c38d040dad385 100644 (file)
@@ -1,4 +1,5 @@
 // { dg-do run }
+// { dg-options "-w" }
 
 // Copyright (C) 2003 Free Software Foundation, Inc.
 // Contributed by Nathan Sidwell 15 Jul 2003 <nathan@codesourcery.com>
index e04b2b863e9a7c1fb0508374d41ea0357937ec42..2fbd3e1be5e998d84726b20ac1ef2d91d0537818 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do run } */
-/* { dg-options "-O3" { target powerpc*-*-* } } */
+/* { dg-options "-w" } */
+/* { dg-options "-O3 -w" { target powerpc*-*-* } } */
 #include <stdio.h>
 #include <stdlib.h>
 
diff --git a/gcc/testsuite/g++.dg/warn/Wconversion1.C b/gcc/testsuite/g++.dg/warn/Wconversion1.C
new file mode 100644 (file)
index 0000000..b3fbc30
--- /dev/null
@@ -0,0 +1,12 @@
+// { dg-options "-Wconversion" }
+
+char c1 = 1024; // { dg-warning "overflow" }
+char c2 = char(1024);
+char c3 = (char) 1024;
+char c4 = static_cast<char>(1024);
+unsigned char uc1 = -129; // { dg-warning "unsigned" }
+
+bool b1 = -3;
+
+int i1 = 0x80000000;
index dca3ed4e35b6e014a561564e8c42d857f8212b31..6cb4785f2b6b94f0acac0d84f9a324ef3bb6456c 100644 (file)
@@ -1,4 +1,5 @@
 // { dg-do assemble  }
+// { dg-options "-Wconversion" }
 
 // Copyright (C) 1999 Free Software Foundation, Inc.
 // Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>