aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@gcc.gnu.org>2012-10-23 19:55:56 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2012-10-23 19:55:56 +0200
commit66f2cabce6346b2794fdd5e54f7caf3f7c09145f (patch)
treeeffb1821bd8baa29f704e7d93ab99244a52f5e4c
parentd507e9a34042b014796c1b0a6d31b2e0466239b7 (diff)
downloadgcc-66f2cabce6346b2794fdd5e54f7caf3f7c09145f.zip
gcc-66f2cabce6346b2794fdd5e54f7caf3f7c09145f.tar.gz
gcc-66f2cabce6346b2794fdd5e54f7caf3f7c09145f.tar.bz2
re PR c++/54988 (fpmath=sse target pragma causes inlining failure because of target specific option mismatch)
PR c++/54988 * decl2.c (cplus_decl_attributes): Don't return early if attributes is NULL. * c-c++-common/pr54988.c: New test. From-SVN: r192734
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/cp/ChangeLog6
2 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8a6ea4e..e9766b6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -72,12 +72,6 @@
* config/aarch64/t-aarch64-linux: New file.
* config/aarch64/t-aarch64: New file.
-2012-10-23 Jakub Jelinek <jakub@redhat.com>
-
- PR c++/54988
- * decl2.c (cplus_decl_attributes): Don't return early
- if attributes is NULL.
-
2012-10-23 Michael Matz <matz@suse.de>
* tree-ssa-operands.h (struct def_optype_d, def_optype_p): Remove.
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 73ab5a9..bb06612 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2012-10-23 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/54988
+ * decl2.c (cplus_decl_attributes): Don't return early
+ if attributes is NULL.
+
2012-10-18 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/54501