[PATCH] D101970: [X86FixupLEAs] Transform the sequence LEA/SUB to SUB/SUB
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 14 07:18:45 PDT 2021
RKSimon added inline comments.
================
Comment at: llvm/lib/Target/X86/X86FixupLEAs.cpp:403
+ MachineBasicBlock &MBB) const {
+ static const int INSTR_DISTANCE_THRESHOLD = 5;
+ int InstrDistance = 1;
----------------
```
const int InstrDistanceThreshold = 5;
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D101970/new/
https://reviews.llvm.org/D101970
More information about the llvm-commits
mailing list