[PATCH] D130554: [AArch64][GlobalISel] Add heuristics for localizing G_CONSTANT.
Thorsten via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 27 00:32:32 PDT 2022
tschuett added inline comments.
================
Comment at: llvm/lib/CodeGen/MachineRegisterInfo.cpp:427
+ auto UI = use_instr_nodbg_begin(Reg), UE = use_instr_nodbg_end();
+ for (; UI != UE && NumUsers < MaxUsers; ++UI) {
+ NumUsers++;
----------------
You could remove the braces.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D130554/new/
https://reviews.llvm.org/D130554
More information about the llvm-commits
mailing list