[clang] [llvm] [llvm-objcopy][libObject] Add RISC-V big-endian support (PR #146913)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 8 15:00:25 PDT 2025
================
@@ -1829,6 +1844,9 @@ Triple Triple::get32BitArchVariant() const {
case Triple::ppc64le: T.setArch(Triple::ppcle); break;
case Triple::renderscript64: T.setArch(Triple::renderscript32); break;
case Triple::riscv64: T.setArch(Triple::riscv32); break;
+ case Triple::riscv64be:
----------------
topperc wrote:
Follow the existing single line formatting
https://github.com/llvm/llvm-project/pull/146913
More information about the llvm-commits
mailing list