[PATCH] D91244: [GlobalISel] Add missing operand update when copy is required
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 12 15:13:48 PST 2020
arsenm added a comment.
Is a test possible?
================
Comment at: llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp:47
+ if (NewReg != MO.getReg()) {
+ MO.setReg(NewReg);
+ }
----------------
Does this need to call the change observer? Is a test possible?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D91244/new/
https://reviews.llvm.org/D91244
More information about the llvm-commits
mailing list