https://github.com/sga-sc updated https://github.com/llvm/llvm-project/pull/182260
>From 4a92cd625bff1189673a438193d76bf8296243c0 Mon Sep 17 00:00:00 2001 From: Georgiy Samoylov <[email protected]> Date: Thu, 19 Feb 2026 16:12:47 +0300 Subject: [PATCH] [lldb][RISCV] Make char an unsigned type for RISC-V by default --- lldb/source/Utility/ArchSpec.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/source/Utility/ArchSpec.cpp b/lldb/source/Utility/ArchSpec.cpp index dfe4351f0c45b..7a6fed11677fc 100644 --- a/lldb/source/Utility/ArchSpec.cpp +++ b/lldb/source/Utility/ArchSpec.cpp @@ -721,6 +721,8 @@ bool ArchSpec::CharIsSignedByDefault() const { case llvm::Triple::ppc64: return m_triple.isOSDarwin(); + case llvm::Triple::riscv64: + case llvm::Triple::riscv32: case llvm::Triple::ppc64le: case llvm::Triple::systemz: case llvm::Triple::xcore: _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
