[PATCH] D138791: [AArch64][SME]: Generate streaming-compatible code for ld2-alloca.
Sander de Smalen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 30 07:11:08 PST 2022
sdesmalen accepted this revision.
sdesmalen added a comment.
This revision is now accepted and ready to land.
LGTM with nit addressed
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:13962
+ // Ensure that the predicate for this elemnts num is available.
+ if(None == getSVEPredPatternFromNumElements(NumElements))
+ return false;
----------------
nit: you can just do `!getSVEPredPatternFromNumElements(NumElements))`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D138791/new/
https://reviews.llvm.org/D138791
More information about the llvm-commits
mailing list