[clang] [llvm] [llvm-objcopy][libObject] Add RISC-V big-endian support (PR #146913)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 3 23:42:50 PDT 2025
================
@@ -452,6 +457,8 @@ Triple::ArchType Triple::getArchTypeForLLVMName(StringRef Name) {
.Case("amdgcn", amdgcn)
.Case("riscv32", riscv32)
.Case("riscv64", riscv64)
+ .Case("riscv32be", riscv32be)
----------------
jh7370 wrote:
Here and in the similar case below, we should probably abide by clang-format's formatting.
https://github.com/llvm/llvm-project/pull/146913
More information about the llvm-commits
mailing list