[llvm] [CodeGen] Fix MachineInstr::isSafeToMove handling of inline asm. (PR #126807)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 22:55:20 PST 2025
================
@@ -1310,7 +1310,7 @@ bool MachineInstr::isSafeToMove(bool &SawStore) const {
if (isPosition() || isDebugInstr() || isTerminator() ||
mayRaiseFPException() || hasUnmodeledSideEffects() ||
- isJumpTableDebugInfo())
+ isJumpTableDebugInfo() || isInlineAsm())
----------------
arsenm wrote:
hasUnmodeledSideEffects already special cases inline asm, so move these checks together? Could even weaken the hasUnmodeledSideEffects part to the raw property check. The other contexts where asm is special cased have a comment about it (e.g. isDead)
https://github.com/llvm/llvm-project/pull/126807
More information about the llvm-commits
mailing list