This is an archive of the discontinued LLVM Phabricator instance.

enable coalescing of COPY and MOVi32imm
ClosedPublic

Authored by hulx2000 on Jul 23 2015, 10:46 AM.

Details

Summary
This patch eanble register coalescing to coalesce the following:

  %vreg2<def> = MOVi32imm 1; GPR32:%vreg2
  %W1<def> = COPY %vreg2; GPR32:%vreg2

into:
  %W1<def> = MOVi32imm 1

Diff Detail

Repository
rL LLVM

Event Timeline

hulx2000 retitled this revision from to enable coalescing of COPY and MOVi32imm.
hulx2000 updated this object.
hulx2000 set the repository for this revision to rL LLVM.
hulx2000 added a subscriber: llvm-commits.
t.p.northover accepted this revision.Jul 23 2015, 11:33 AM
t.p.northover edited edge metadata.

This looks fine to me.

Tim.

This revision is now accepted and ready to land.Jul 23 2015, 11:33 AM
weimingz closed this revision.Jul 23 2015, 12:26 PM

Committed revision 243033