Skip to content

Commit 39c9dda

Browse files
authored
[AArch64] Move SME_ZA_LDR and SME_ZA_STR into FIRST_TARGET_MEMORY_OPCODE. NFCI (#120091)
These opcodes are currently in the "strictfp" section. They should either be in "memory", or moved into the generic ocodes. Note that isTargetMemoryOpcode/FIRST_TARGET_MEMORY_OPCODE doesn't seem to be used for anything at the moment.
1 parent 4104906 commit 39c9dda

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,10 +480,6 @@ enum NodeType : unsigned {
480480
STRICT_FCMP = ISD::FIRST_TARGET_STRICTFP_OPCODE,
481481
STRICT_FCMPE,
482482

483-
// SME ZA loads and stores
484-
SME_ZA_LDR,
485-
SME_ZA_STR,
486-
487483
// NEON Load/Store with post-increment base updates
488484
LD2post = ISD::FIRST_TARGET_MEMORY_OPCODE,
489485
LD3post,
@@ -520,6 +516,10 @@ enum NodeType : unsigned {
520516
STP,
521517
STILP,
522518
STNP,
519+
520+
// SME ZA loads and stores
521+
SME_ZA_LDR,
522+
SME_ZA_STR,
523523
};
524524

525525
} // end namespace AArch64ISD

0 commit comments

Comments
 (0)