[PATCH] D102010: Pre-commit test case for D101970

Guozhi Wei via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu May 6 10:58:47 PDT 2021


Carrot created this revision.
Carrot added a reviewer: RKSimon.
Herald added a subscriber: pengfei.
Carrot requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

This is a test case for D101970 <https://reviews.llvm.org/D101970>, which shows the optimization opportunity for

      lea (reg1, reg2), reg3
      sub reg3, reg4
  
  to
  
      sub reg1, reg4
      sub reg2, reg4


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D102010

Files:
  llvm/test/CodeGen/X86/lea-opt2.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102010.343458.patch
Type: text/x-patch
Size: 4612 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210506/4e556681/attachment-0001.bin>


More information about the llvm-commits mailing list