[llvm] [X86][NFCI] Add IsStore parameter to hasConditionalLoadStoreForType (PR #132153)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 05:10:56 PDT 2025
================
@@ -175,7 +175,7 @@ unsigned X86TTIImpl::getNumberOfRegisters(unsigned ClassID) const {
return 8;
}
-bool X86TTIImpl::hasConditionalLoadStoreForType(Type *Ty) const {
+bool X86TTIImpl::hasConditionalLoadStoreForType(Type *Ty, bool IsStore) const {
----------------
phoebewang wrote:
It's not used by X86, but as a general interface, maybe used by some future target. See #132032.
https://github.com/llvm/llvm-project/pull/132153
More information about the llvm-commits
mailing list