Skip to content

Commit 9b9c2a0

Browse files
committed
[RISCV][NFC] Move RISCVISD::TAIL beside RISCVISD::CALL
1 parent 383bd05 commit 9b9c2a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/Target/RISCV/RISCVISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20087,11 +20087,11 @@ const char *RISCVTargetLowering::getTargetNodeName(unsigned Opcode) const {
2008720087
NODE_NAME_CASE(SRET_GLUE)
2008820088
NODE_NAME_CASE(MRET_GLUE)
2008920089
NODE_NAME_CASE(CALL)
20090+
NODE_NAME_CASE(TAIL)
2009020091
NODE_NAME_CASE(SELECT_CC)
2009120092
NODE_NAME_CASE(BR_CC)
2009220093
NODE_NAME_CASE(BuildPairF64)
2009320094
NODE_NAME_CASE(SplitF64)
20094-
NODE_NAME_CASE(TAIL)
2009520095
NODE_NAME_CASE(ADD_LO)
2009620096
NODE_NAME_CASE(HI)
2009720097
NODE_NAME_CASE(LLA)

llvm/lib/Target/RISCV/RISCVISelLowering.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ enum NodeType : unsigned {
3434
SRET_GLUE,
3535
MRET_GLUE,
3636
CALL,
37+
TAIL,
3738
/// Select with condition operator - This selects between a true value and
3839
/// a false value (ops #3 and #4) based on the boolean result of comparing
3940
/// the lhs and rhs (ops #0 and #1) of a conditional expression with the
@@ -44,7 +45,6 @@ enum NodeType : unsigned {
4445
BR_CC,
4546
BuildPairF64,
4647
SplitF64,
47-
TAIL,
4848

4949
// Add the Lo 12 bits from an address. Selected to ADDI.
5050
ADD_LO,

0 commit comments

Comments
 (0)