[PATCH] D44782: Account for partial stack slot spills (PR30821)

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 15 18:41:43 PDT 2018


craig.topper accepted this revision.
craig.topper added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: lib/Target/X86/X86InstrInfo.cpp:4126
                                            int &FrameIndex) const {
-  if (isFrameLoadOpcode(MI.getOpcode()))
+  unsigned dummy;
+  return X86InstrInfo::isLoadFromStackSlot(MI, FrameIndex, dummy);
----------------
Capitalize variable names. Same for the other instances below.


https://reviews.llvm.org/D44782





More information about the llvm-commits mailing list