summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2017-02-10 09:25:15 +0000
committerEric Fiselier <eric@efcs.ca>2017-02-10 09:25:15 +0000
commit2279ee31449da018a32830926261dce2383ea070 (patch)
tree4a35985c144d4ddb1c82ae9ec9185edbac46cf5a
parent637160c55aae9d1484c83b2225658170b1238714 (diff)
downloadbcm5719-llvm-2279ee31449da018a32830926261dce2383ea070.tar.gz
bcm5719-llvm-2279ee31449da018a32830926261dce2383ea070.zip
Fix yet another Apple buildit bug
llvm-svn: 294732
-rw-r--r--libcxx/src/typeinfo.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/src/typeinfo.cpp b/libcxx/src/typeinfo.cpp
index 05f57e0f996..02778f36870 100644
--- a/libcxx/src/typeinfo.cpp
+++ b/libcxx/src/typeinfo.cpp
@@ -9,8 +9,10 @@
#include "typeinfo"
+// FIXME: Remove __APPLE__ default here once buildit is gone.
#if (!defined(_LIBCPP_ABI_MICROSOFT) && !defined(LIBCXX_BUILDING_LIBCXXABI) && \
- !defined(LIBCXXRT) && !defined(__GLIBCXX__)) || \
+ !defined(LIBCXXRT) && !defined(__GLIBCXX__) && \
+ !defined(__APPLE__)) || \
defined(_LIBCPP_BUILDING_HAS_NO_ABI_LIBRARY) // FIXME: remove this configuration.
std::type_info::~type_info()
{
OpenPOWER on IntegriCloud