[PATCH] D70176: [Codegen][ARM] Add addressing modes from masked loads and stores
Sam Parker via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 13 07:30:57 PST 2019
samparker added inline comments.
================
Comment at: llvm/include/llvm/CodeGen/TargetLowering.h:1177
+ unsigned Ty = (unsigned)VT.SimpleTy;
+ return (LegalizeAction)((IndexedModeActions[Ty][IdxMode] & 0xf000) >> 12);
+ }
----------------
Is there a way that we can avoid these magic hex values?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70176/new/
https://reviews.llvm.org/D70176
More information about the llvm-commits
mailing list