[PATCH] D90046: [LiveDebugValues] Handle spill locations with a fixed and scalable component.
Stephen Tozer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 11 08:35:22 PST 2021
StephenTozer added inline comments.
================
Comment at: llvm/lib/CodeGen/LiveDebugValues/VarLocBasedImpl.cpp:574-576
+ Other.Var, Other.Kind, Other.Loc.SpillLocation.SpillBase,
+ Loc.SpillLocation.SpillOffset.getFixed(),
+ Loc.SpillLocation.SpillOffset.getScalable(), Other.Expr);
----------------
The SpillOffset fixed and scalable arguments here are missing `Other.`, so we're comparing the current `VarLoc` to itself - can you fix this in a followup patch?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90046/new/
https://reviews.llvm.org/D90046
More information about the llvm-commits
mailing list