[PATCH] D55975: [X86] Remove x86ISD::INC/DEC. Just select them from X86ISD::ADD/SUB at isel time
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 21 09:53:29 PST 2018
RKSimon added inline comments.
================
Comment at: lib/Target/X86/X86ISelDAGToDAG.cpp:2311
+ }
+ }
+ } else {
----------------
craig.topper wrote:
> RKSimon wrote:
> > (style) return true here for ISD::CopyToReg special case and remove else + indentation below?
> We’re inside the outer for loop over users of the flags. We may have a mix of selected and unselected users. We can’t return true until we’ve visited them all.
Sorry, I'm miscounting braces.....
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55975/new/
https://reviews.llvm.org/D55975
More information about the llvm-commits
mailing list