| //===----------------------------------------------------------------------===// |
| // 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. |
| //===----------------------------------------------------------------------===// |
| #ifndef SUPPORT_DEMANGLE_H |
| #define SUPPORT_DEMANGLE_H |
| #if !defined(TEST_HAS_NO_DEMANGLE) |
| # if defined(__GNUC__) || defined(__clang__) |
| # if __has_include("cxxabi.h") |
| # define TEST_HAS_NO_DEMANGLE |
| # define TEST_HAS_NO_DEMANGLE |
| #if defined(TEST_HAS_NO_DEMANGLE) |
| inline std::string demangle(const char* mangled_name) { |
| template <size_t N> struct Printer; |
| inline std::string demangle(const char* mangled_name) { |
| std::string input(mangled_name); |
| char* out = __cxxabiv1::__cxa_demangle(input.c_str(), nullptr, nullptr, &status); |
| #endif // SUPPORT_DEMANGLE_H |