[PATCH] D80641: Use Pseudo Instruction to carry stack probing information

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 27 11:23:20 PDT 2020


craig.topper added inline comments.


================
Comment at: llvm/lib/Target/X86/X86FrameLowering.cpp:531
+  auto Where =
+      std::find_if(PrologMBB.begin(), PrologMBB.end(), [](MachineInstr &MI) {
+        return MI.getOpcode() == X86::STACKALLOC_W_PROBING;
----------------
Can we use llvm::find_if here which automatically calls begin/end?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D80641/new/

https://reviews.llvm.org/D80641





More information about the llvm-commits mailing list