[llvm] [CodeGen] Fix MachineInstr::isSafeToMove handling of inline asm. (PR #126807)
Eli Friedman via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 14:30:29 PST 2025
================
@@ -1310,7 +1310,7 @@ bool MachineInstr::isSafeToMove(bool &SawStore) const {
if (isPosition() || isDebugInstr() || isTerminator() ||
mayRaiseFPException() || hasUnmodeledSideEffects() ||
- isJumpTableDebugInfo())
+ isJumpTableDebugInfo() || isInlineAsm())
----------------
efriedma-quic wrote:
Tried splitting the checks into two if statements, with comments to explain. Hopefully the split makes sense.
https://github.com/llvm/llvm-project/pull/126807
More information about the llvm-commits
mailing list