[clang] [llvm] Finish deleting the le32/le64 targets (PR #98497)
Derek Schuff via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 11 09:20:46 PDT 2024
================
@@ -842,8 +842,8 @@ class LLVM_LIBRARY_VISIBILITY NaClTargetInfo : public OSTargetInfo<Target> {
} else if (Triple.getArch() == llvm::Triple::mipsel) {
// Handled on mips' setDataLayout.
} else {
- assert(Triple.getArch() == llvm::Triple::le32);
- this->resetDataLayout("e-p:32:32-i64:64");
+ assert(Triple.getArch() == llvm::Triple::mipsel);
----------------
dschuff wrote:
this assert will never pass, since the previous `else if` condition is the same.
https://github.com/llvm/llvm-project/pull/98497
More information about the llvm-commits
mailing list