aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2017-10-23 20:25:58 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2017-10-23 20:25:58 +0000
commitb367de5dc31371f88b59e165aa6b8be4ed9ee070 (patch)
tree8517bc2e3717c7759be570e3b44b39e5d294aeaa /gcc
parent802561b2cc6cd4e4f59815f7de199026de62a650 (diff)
downloadgcc-b367de5dc31371f88b59e165aa6b8be4ed9ee070.zip
gcc-b367de5dc31371f88b59e165aa6b8be4ed9ee070.tar.gz
gcc-b367de5dc31371f88b59e165aa6b8be4ed9ee070.tar.bz2
Add INCLUDE_UNIQUE_PTR and use it (PR bootstrap/82610)
gcc/ChangeLog: PR bootstrap/82610 * system.h: Conditionally include "unique-ptr.h" if INCLUDE_UNIQUE_PTR is defined. * unique-ptr-tests.cc: Remove include of "unique-ptr.h" in favor of defining INCLUDE_UNIQUE_PTR before including "system.h". include/ChangeLog: * unique-ptr.h: Make include of <memory> conditional on C++11 or later. From-SVN: r254024
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/system.h10
-rw-r--r--gcc/unique-ptr-tests.cc2
3 files changed, 19 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bed397c..8aa652d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,11 @@
+2017-10-23 David Malcolm <dmalcolm@redhat.com>
+
+ PR bootstrap/82610
+ * system.h: Conditionally include "unique-ptr.h" if
+ INCLUDE_UNIQUE_PTR is defined.
+ * unique-ptr-tests.cc: Remove include of "unique-ptr.h" in favor
+ of defining INCLUDE_UNIQUE_PTR before including "system.h".
+
2017-10-23 Sebastian Perta <sebastian.perta@renesas.com>
* config/rl78/rl78.md: New define_expand "subdi3".
diff --git a/gcc/system.h b/gcc/system.h
index 01bc134..cd46454 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -720,6 +720,16 @@ extern int vsnprintf (char *, size_t, const char *, va_list);
#define __builtin_expect(a, b) (a)
#endif
+/* Some of the headers included by <memory> can use "abort" within a
+ namespace, e.g. "_VSTD::abort();", which fails after we use the
+ preprocessor to redefine "abort" as "fancy_abort" below.
+ Given that unique-ptr.h can use "free", we need to do this after "free"
+ is declared but before "abort" is overridden. */
+
+#ifdef INCLUDE_UNIQUE_PTR
+# include "unique-ptr.h"
+#endif
+
/* Redefine abort to report an internal error w/o coredump, and
reporting the location of the error in the source file. */
extern void fancy_abort (const char *, int, const char *)
diff --git a/gcc/unique-ptr-tests.cc b/gcc/unique-ptr-tests.cc
index f5b72a8..d275694 100644
--- a/gcc/unique-ptr-tests.cc
+++ b/gcc/unique-ptr-tests.cc
@@ -18,9 +18,9 @@ along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
+#define INCLUDE_UNIQUE_PTR
#include "system.h"
#include "coretypes.h"
-#include "unique-ptr.h"
#include "selftest.h"
#if CHECKING_P