[llvm] c25ad27 - [AArch64] Remove unused references to MVT::f80. (#169545)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 1 05:43:21 PST 2025
Author: David Green
Date: 2025-12-01T13:43:16Z
New Revision: c25ad27174c47f01c7bd542fac55e8a7cdec5b73
URL: https://github.com/llvm/llvm-project/commit/c25ad27174c47f01c7bd542fac55e8a7cdec5b73
DIFF: https://github.com/llvm/llvm-project/commit/c25ad27174c47f01c7bd542fac55e8a7cdec5b73.diff
LOG: [AArch64] Remove unused references to MVT::f80. (#169545)
These f80 fp types are only supported on X86 and can be removed from
AArch64. It looks like they were copied from another backend by mistake.
Added:
Modified:
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
index b4f47d249885d..2ce8f6d924a78 100644
--- a/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ b/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -530,7 +530,6 @@ AArch64TargetLowering::AArch64TargetLowering(const TargetMachine &TM,
setOperationAction(ISD::FREM, MVT::f32, Expand);
setOperationAction(ISD::FREM, MVT::f64, Expand);
- setOperationAction(ISD::FREM, MVT::f80, Expand);
setOperationAction(ISD::BUILD_PAIR, MVT::i64, Expand);
More information about the llvm-commits
mailing list