This NFC patch is to address to comments of https://reviews.llvm.org/D71693 to split the tryAndWithMask into several small calls.
Details
Diff Detail
Event Timeline
Just some minor comments, I think it overall LGTM but am curious in knowing any comments from others.
llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | ||
---|---|---|
4370 | Just curious, but any reason on why we split up the declaration of variables? I mean since the original had Imm, SH, MB, ME declared together? | |
4384 | Unnecessary whitespace change between { } (also seen in other places for SDValue Ops[] brackets as well)? | |
4413 | I think it would be more clear if it is read, ". . . replace the contents of [0 - 32) with [32 - 64) even if we didn't rotate it. | |
4750 | I think it would still be valuable to have a comment here to document this case with AND. |
Just curious, but any reason on why we split up the declaration of variables? I mean since the original had Imm, SH, MB, ME declared together?