Displaying 1 result from an estimated 1 matches for "__wasm__".
Did you mean:
__asm__
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...ax_demangled_size = 32;
static constexpr const char* spec = "%a";
};
constexpr const char* float_data<double>::spec;
template <>
struct float_data<long double>
{
#if defined(__mips__) && defined(__mips_n64) || defined(__aarch64__) || \
defined(__wasm__)
static const size_t mangled_size = 32;
#elif defined(__arm__) || defined(__mips__) || defined(__hexagon__)
static const size_t mangled_size = 16;
#else
static const size_t mangled_size = 20; // May need to be adjusted to 16 or 24 on other platforms
#endif
static const size_...