[PATCH] D30343: [libcxxabi] Fix condition typo in rL296136
Phabricator via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 24 10:34:56 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL296146: [libcxxabi] Fix condition typo in rL296136 (authored by rsingh).
Changed prior to commit:
https://reviews.llvm.org/D30343?vs=89687&id=89693#toc
Repository:
rL LLVM
https://reviews.llvm.org/D30343
Files:
libcxxabi/trunk/src/abort_message.cpp
Index: libcxxabi/trunk/src/abort_message.cpp
===================================================================
--- libcxxabi/trunk/src/abort_message.cpp
+++ libcxxabi/trunk/src/abort_message.cpp
@@ -35,7 +35,7 @@
void abort_message(const char* format, ...)
{
// write message to stderr
-#if !defined(NDEBUG) && !defined(LIBCXXABI_BAREMETAL)
+#if !defined(NDEBUG) || !LIBCXXABI_BAREMETAL
#ifdef __APPLE__
fprintf(stderr, "libc++abi.dylib: ");
#endif
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D30343.89693.patch
Type: text/x-patch
Size: 465 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20170224/d44127fe/attachment.bin>
More information about the cfe-commits
mailing list