[llvm] 6660319 - [RISCV] Remove unused RISCV::VLEFF and VLEFF_MASK. NFC
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu May 6 09:41:40 PDT 2021
Author: Craig Topper
Date: 2021-05-06T09:41:29-07:00
New Revision: 6660319cef6edf114a4cc30013039fa5553ba408
URL: https://github.com/llvm/llvm-project/commit/6660319cef6edf114a4cc30013039fa5553ba408
DIFF: https://github.com/llvm/llvm-project/commit/6660319cef6edf114a4cc30013039fa5553ba408.diff
LOG: [RISCV] Remove unused RISCV::VLEFF and VLEFF_MASK. NFC
Looks like these got left behind when vleff isel was moved to
X86ISelDAGToDAG.cpp
Added:
Modified:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
llvm/lib/Target/RISCV/RISCVISelLowering.h
Removed:
################################################################################
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index b50d3df63bd7..7573de05dd97 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -7897,8 +7897,6 @@ const char *RISCVTargetLowering::getTargetNodeName(unsigned Opcode) const {
NODE_NAME_CASE(SPLAT_VECTOR_I64)
NODE_NAME_CASE(READ_VLENB)
NODE_NAME_CASE(TRUNCATE_VECTOR_VL)
- NODE_NAME_CASE(VLEFF)
- NODE_NAME_CASE(VLEFF_MASK)
NODE_NAME_CASE(VSLIDEUP_VL)
NODE_NAME_CASE(VSLIDE1UP_VL)
NODE_NAME_CASE(VSLIDEDOWN_VL)
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.h b/llvm/lib/Target/RISCV/RISCVISelLowering.h
index 5fc82ec6abdc..cf32e9676e49 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.h
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.h
@@ -129,9 +129,6 @@ enum NodeType : unsigned {
// Truncates a RVV integer vector by one power-of-two. Carries both an extra
// mask and VL operand.
TRUNCATE_VECTOR_VL,
- // Unit-stride fault-only-first load
- VLEFF,
- VLEFF_MASK,
// Matches the semantics of vslideup/vslidedown. The first operand is the
// pass-thru operand, the second is the source vector, the third is the
// XLenVT index (either constant or non-constant), the fourth is the mask
More information about the llvm-commits
mailing list