[clang] [llvm] Finish deleting the le32/le64 targets (PR #98497)
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Thu Jul 11 09:25:08 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);
----------------
AaronBallman wrote:
Great catch!
https://github.com/llvm/llvm-project/pull/98497
More information about the cfe-commits
mailing list