OSDN Git Service

cp:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Apr 2002 08:47:31 +0000 (08:47 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 29 Apr 2002 08:47:31 +0000 (08:47 +0000)
PR c++/5719
* decl.c (grok_op_properties): Assignment ops don't have to return
by value. operator% should.
testsuite:
* g++.dg/warn/effc1.C: New test.

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

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/warn/effc1.C [new file with mode: 0644]

index 6167381..e076a34 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
+
+       PR c++/5719
+       * decl.c (grok_op_properties): Assignment ops don't have to return 
+       by value. operator% should.
+
 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
 
        PR c/6343
index 642fcf0..450bc39 100644 (file)
@@ -12677,10 +12677,12 @@ grok_op_properties (decl, friendp)
       /* Effective C++ rule 23.  */
       if (warn_ecpp
          && arity == 2
+         && !DECL_ASSIGNMENT_OPERATOR_P (decl)
          && (operator_code == PLUS_EXPR
              || operator_code == MINUS_EXPR
              || operator_code == TRUNC_DIV_EXPR
-             || operator_code == MULT_EXPR)
+             || operator_code == MULT_EXPR
+             || operator_code == TRUNC_MOD_EXPR)
          && TREE_CODE (TREE_TYPE (TREE_TYPE (decl))) == REFERENCE_TYPE)
        warning ("`%D' should return by value", decl);
 
index f806315..0024a92 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * g++.dg/warn/effc1.C: New test.
+
 2002-04-29  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * gcc.dg/cpp/if-cexp.c: Add a test.
diff --git a/gcc/testsuite/g++.dg/warn/effc1.C b/gcc/testsuite/g++.dg/warn/effc1.C
new file mode 100644 (file)
index 0000000..e90c5f7
--- /dev/null
@@ -0,0 +1,16 @@
+// { dg-options -Weffc++ }
+// { dg-do compile }
+
+// Copyright (C) 2001 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 26 Apr 2002 <nathan@codesourcery.com>
+
+// Bug 5719 
+
+class A
+{
+  public:
+  A & operator+=( int );
+  A & operator+( int ); // { dg-warning "`A& A::operator+(int)' should return by value" "" }
+  A operator+=( float );
+  A operator+( float );
+};