Author: smeenai Date: Thu Mar 30 18:31:33 2017 New Revision: 299129 URL: http://llvm.org/viewvc/llvm-project?rev=299129&view=rev Log: [libc++abi] Delete config.h
Summary: It's now completely empty, so we can remove it entirely. Reviewers: mclow.lists, EricWF Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D31502 Removed: libcxxabi/trunk/src/config.h Modified: libcxxabi/trunk/src/cxa_default_handlers.cpp libcxxabi/trunk/src/cxa_exception.cpp libcxxabi/trunk/src/cxa_exception_storage.cpp libcxxabi/trunk/src/cxa_guard.cpp libcxxabi/trunk/src/cxa_handlers.cpp libcxxabi/trunk/src/cxa_personality.cpp libcxxabi/trunk/src/fallback_malloc.cpp libcxxabi/trunk/test/test_exception_storage.pass.cpp libcxxabi/trunk/test/test_guard.pass.cpp Removed: libcxxabi/trunk/src/config.h URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/config.h?rev=299128&view=auto ============================================================================== --- libcxxabi/trunk/src/config.h (original) +++ libcxxabi/trunk/src/config.h (removed) @@ -1,17 +0,0 @@ -//===----------------------------- config.h -------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -// -// Defines macros used within the libc++abi project. -// -//===----------------------------------------------------------------------===// - - -#ifndef LIBCXXABI_CONFIG_H -#define LIBCXXABI_CONFIG_H - -#endif // LIBCXXABI_CONFIG_H Modified: libcxxabi/trunk/src/cxa_default_handlers.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_default_handlers.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_default_handlers.cpp (original) +++ libcxxabi/trunk/src/cxa_default_handlers.cpp Thu Mar 30 18:31:33 2017 @@ -14,7 +14,6 @@ #include <exception> #include <cstdlib> #include "abort_message.h" -#include "config.h" // For __sync_swap #include "cxxabi.h" #include "cxa_handlers.hpp" #include "cxa_exception.hpp" Modified: libcxxabi/trunk/src/cxa_exception.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_exception.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_exception.cpp (original) +++ libcxxabi/trunk/src/cxa_exception.cpp Thu Mar 30 18:31:33 2017 @@ -11,7 +11,6 @@ // //===----------------------------------------------------------------------===// -#include "config.h" #include "cxxabi.h" #include <exception> // for std::terminate Modified: libcxxabi/trunk/src/cxa_exception_storage.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_exception_storage.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_exception_storage.cpp (original) +++ libcxxabi/trunk/src/cxa_exception_storage.cpp Thu Mar 30 18:31:33 2017 @@ -13,7 +13,6 @@ #include "cxa_exception.hpp" -#include "config.h" #include <__threading_support> #if defined(_LIBCXXABI_HAS_NO_THREADS) Modified: libcxxabi/trunk/src/cxa_guard.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_guard.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_guard.cpp (original) +++ libcxxabi/trunk/src/cxa_guard.cpp Thu Mar 30 18:31:33 2017 @@ -10,7 +10,6 @@ #include "__cxxabi_config.h" #include "abort_message.h" -#include "config.h" #include <__threading_support> #include <stdint.h> Modified: libcxxabi/trunk/src/cxa_handlers.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_handlers.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_handlers.cpp (original) +++ libcxxabi/trunk/src/cxa_handlers.cpp Thu Mar 30 18:31:33 2017 @@ -14,7 +14,6 @@ #include <new> #include <exception> #include "abort_message.h" -#include "config.h" #include "cxxabi.h" #include "cxa_handlers.hpp" #include "cxa_exception.hpp" Modified: libcxxabi/trunk/src/cxa_personality.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_personality.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/cxa_personality.cpp (original) +++ libcxxabi/trunk/src/cxa_personality.cpp Thu Mar 30 18:31:33 2017 @@ -18,7 +18,6 @@ #include <typeinfo> #include "__cxxabi_config.h" -#include "config.h" #include "cxa_exception.hpp" #include "cxa_handlers.hpp" #include "private_typeinfo.h" Modified: libcxxabi/trunk/src/fallback_malloc.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/fallback_malloc.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/src/fallback_malloc.cpp (original) +++ libcxxabi/trunk/src/fallback_malloc.cpp Thu Mar 30 18:31:33 2017 @@ -9,7 +9,6 @@ #include "fallback_malloc.h" -#include "config.h" #include <__threading_support> #include <cstdlib> // for malloc, calloc, free Modified: libcxxabi/trunk/test/test_exception_storage.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/test/test_exception_storage.pass.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/test/test_exception_storage.pass.cpp (original) +++ libcxxabi/trunk/test/test_exception_storage.pass.cpp Thu Mar 30 18:31:33 2017 @@ -11,7 +11,6 @@ // This breaks this test when compiled in C++17. For now fix this by manually // re-enabling the STL functions. #define _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS -#include "../src/config.h" #include <cstdlib> #include <algorithm> Modified: libcxxabi/trunk/test/test_guard.pass.cpp URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/test/test_guard.pass.cpp?rev=299129&r1=299128&r2=299129&view=diff ============================================================================== --- libcxxabi/trunk/test/test_guard.pass.cpp (original) +++ libcxxabi/trunk/test/test_guard.pass.cpp Thu Mar 30 18:31:33 2017 @@ -7,7 +7,6 @@ // //===----------------------------------------------------------------------===// -#include "../src/config.h" #include "cxxabi.h" #include <cassert> _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits