[llvm] [ARM][Thumb2] Mark BTI-clearing instructions as scheduling region boundaries (PR #79173)

Victor Campos via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 5 07:28:26 PST 2024


================
@@ -2088,7 +2088,7 @@ bool ARMBaseInstrInfo::isSchedulingBoundary(const MachineInstr &MI,
   if (!MI.isCall() && MI.definesRegister(ARM::SP))
     return true;
 
-  return false;
+  return TargetInstrInfo::isSchedulingBoundary(MI, MBB, MF);
----------------
vhscampos wrote:

I've reverted this part of the patch so not to shake things up here.

https://github.com/llvm/llvm-project/pull/79173


More information about the llvm-commits mailing list