[llvm] c6d3347 - [RISCV][NFC] Simplify code.
Jianjian GUAN via llvm-commits
llvm-commits at lists.llvm.org
Mon May 22 23:37:22 PDT 2023
Author: Jianjian GUAN
Date: 2023-05-23T14:37:14+08:00
New Revision: c6d3347e137665cce111ee4890bac092005859e5
URL: https://github.com/llvm/llvm-project/commit/c6d3347e137665cce111ee4890bac092005859e5
DIFF: https://github.com/llvm/llvm-project/commit/c6d3347e137665cce111ee4890bac092005859e5.diff
LOG: [RISCV][NFC] Simplify code.
Reduce scope of if-else statements.
Reviewed By: craig.topper
Differential Revision: https://reviews.llvm.org/D151178
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 97119e8be62d..87784be54ad4 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -264,25 +264,19 @@ RISCVTargetLowering::RISCVTargetLowering(const TargetMachine &TM,
setLibcallName(RTLIB::MULO_I64, nullptr);
}
- if (!Subtarget.hasStdExtM() && !Subtarget.hasStdExtZmmul()) {
+ if (!Subtarget.hasStdExtM() && !Subtarget.hasStdExtZmmul())
setOperationAction({ISD::MUL, ISD::MULHS, ISD::MULHU}, XLenVT, Expand);
- } else {
- if (Subtarget.is64Bit()) {
- setOperationAction(ISD::MUL, {MVT::i32, MVT::i128}, Custom);
- } else {
- setOperationAction(ISD::MUL, MVT::i64, Custom);
- }
- }
+ else if (Subtarget.is64Bit())
+ setOperationAction(ISD::MUL, {MVT::i32, MVT::i128}, Custom);
+ else
+ setOperationAction(ISD::MUL, MVT::i64, Custom);
- if (!Subtarget.hasStdExtM()) {
+ if (!Subtarget.hasStdExtM())
setOperationAction({ISD::SDIV, ISD::UDIV, ISD::SREM, ISD::UREM},
XLenVT, Expand);
- } else {
- if (Subtarget.is64Bit()) {
- setOperationAction({ISD::SDIV, ISD::UDIV, ISD::UREM},
- {MVT::i8, MVT::i16, MVT::i32}, Custom);
- }
- }
+ else if (Subtarget.is64Bit())
+ setOperationAction({ISD::SDIV, ISD::UDIV, ISD::UREM},
+ {MVT::i8, MVT::i16, MVT::i32}, Custom);
setOperationAction(
{ISD::SDIVREM, ISD::UDIVREM, ISD::SMUL_LOHI, ISD::UMUL_LOHI}, XLenVT,
More information about the llvm-commits
mailing list