[PATCH] D36704: [CodeGen] Improve the consistency of instruction fusion
Evandro Menezes via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 6 13:05:11 PST 2017
evandro marked an inline comment as done.
evandro added inline comments.
================
Comment at: llvm/lib/CodeGen/MacroFusion.cpp:94
+ SUnit *SU = SI.getSUnit();
+ if (SI.isWeak() || isHazard(SI) ||
+ &FirstSU == SU || FirstSU.isSucc(SU))
----------------
fhahn wrote:
> Hard to tell in Phabricator, could you check if that could go on the previous line?
Yes, it would.
Repository:
rL LLVM
https://reviews.llvm.org/D36704
More information about the llvm-commits
mailing list