[PATCH] D138359: [TableGen] CheckSchedClassTables - check for unnecessary scheduler overrides
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 19 11:22:01 PST 2022
RKSimon added inline comments.
================
Comment at: llvm/include/llvm/MC/MCSchedule.h:146
+ NumWriteLatencyEntries == RHS.NumWriteLatencyEntries &&
+ (IgnoreRHSReadAdvance || NumReadAdvanceEntries == 0 ||
+ (ReadAdvanceIdx == RHS.ReadAdvanceIdx &&
----------------
Sorry - I should have removed the "NumReadAdvanceEntries == 0" entry, it was just an experiment
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138359/new/
https://reviews.llvm.org/D138359
More information about the llvm-commits
mailing list