mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-19 06:38:28 +00:00
[libc++abi][VE] Support VE in long double demangler
Support VE in long double demangler. This patch corrects libcxxabi/test/test_demangle.pass.cpp on VE. Reviewed By: MaskRay, #libc_abi, ldionne Differential Revision: https://reviews.llvm.org/D159004
This commit is contained in:
parent
d34f5dd07a
commit
e0c54a2e7b
@ -5134,7 +5134,8 @@ template <>
|
||||
struct FloatData<long double>
|
||||
{
|
||||
#if defined(__mips__) && defined(__mips_n64) || defined(__aarch64__) || \
|
||||
defined(__wasm__) || defined(__riscv) || defined(__loongarch__)
|
||||
defined(__wasm__) || defined(__riscv) || defined(__loongarch__) || \
|
||||
defined(__ve__)
|
||||
static const size_t mangled_size = 32;
|
||||
#elif defined(__arm__) || defined(__mips__) || defined(__hexagon__)
|
||||
static const size_t mangled_size = 16;
|
||||
|
@ -5129,7 +5129,8 @@ template <>
|
||||
struct FloatData<long double>
|
||||
{
|
||||
#if defined(__mips__) && defined(__mips_n64) || defined(__aarch64__) || \
|
||||
defined(__wasm__) || defined(__riscv) || defined(__loongarch__)
|
||||
defined(__wasm__) || defined(__riscv) || defined(__loongarch__) || \
|
||||
defined(__ve__)
|
||||
static const size_t mangled_size = 32;
|
||||
#elif defined(__arm__) || defined(__mips__) || defined(__hexagon__)
|
||||
static const size_t mangled_size = 16;
|
||||
|
Loading…
x
Reference in New Issue
Block a user