re PR c++/45267 (inlining fails with -m32)
authorJason Merrill <jason@redhat.com>
Wed, 20 Apr 2011 00:06:19 +0000 (20:06 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 20 Apr 2011 00:06:19 +0000 (20:06 -0400)
PR c++/45267
* decl.c (duplicate_decls): Keep always_inline attribute
in sync with DECL_DISREGARD_INLINE_LIMITS.

From-SVN: r172744

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

index ec683a2fc147915653496bbd5672771a729d74f1..7feb42795654f124ab664030bf20d763542e5cc9 100644 (file)
@@ -1,3 +1,9 @@
+2011-04-19  Jason Merrill  <jason@redhat.com>
+
+       PR c++/45267
+       * decl.c (duplicate_decls): Keep always_inline attribute
+       in sync with DECL_DISREGARD_INLINE_LIMITS.
+
 2011-04-18  Jason Merrill  <jason@redhat.com>
 
        PR c++/48569
index 794832b2e0a766e8c82d72e8e1285ffc3d3b3f90..63096485ffed2e791e74942dafa8b51a4f233c81 100644 (file)
@@ -2052,6 +2052,19 @@ duplicate_decls (tree newdecl, tree olddecl, bool newdecl_is_friend)
 
          /* [temp.expl.spec/14] We don't inline explicit specialization
             just because the primary template says so.  */
+
+         /* But still keep DECL_DISREGARD_INLINE_LIMITS in sync with
+            the always_inline attribute.  */
+         if (DECL_DISREGARD_INLINE_LIMITS (olddecl)
+             && !DECL_DISREGARD_INLINE_LIMITS (newdecl))
+           {
+             if (DECL_DECLARED_INLINE_P (newdecl))
+               DECL_DISREGARD_INLINE_LIMITS (newdecl) = true;
+             else
+               DECL_ATTRIBUTES (newdecl)
+                 = remove_attribute ("always_inline",
+                                     DECL_ATTRIBUTES (newdecl));
+           }
        }
       else if (new_defines_function && DECL_INITIAL (olddecl))
        {
index b6de528e4aea79b84e97e6bfe7fa23947cd886ab..7e5d187a19299b3420245d22868af979cb25d9e3 100644 (file)
@@ -1,3 +1,7 @@
+2011-04-19  Jason Merrill  <jason@redhat.com>
+
+       * g++.dg/ext/attrib41.C: New.
+
 2011-04-19  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        PR testsuite/48676
diff --git a/gcc/testsuite/g++.dg/ext/attrib41.C b/gcc/testsuite/g++.dg/ext/attrib41.C
new file mode 100644 (file)
index 0000000..368554a
--- /dev/null
@@ -0,0 +1,19 @@
+// PR c++/45267
+// { dg-options "-O" }
+
+template<typename T> struct Vector {
+  Vector(long long x);
+  inline Vector<T> operator<<(int x) const __attribute__((always_inline));
+};
+long long bar (long long);
+template<> inline Vector<int> Vector<int>::operator<<(int x) const {
+  return bar(x);
+}
+bool b;
+int main() {
+  Vector<int> a(1);
+  if ((a << 2), b) {
+    a << 2;
+    throw 1;
+  }
+}