[llvm] [AArch64] Add getStreamingHazardSize() to AArch64Subtarget (PR #113679)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 25 09:27:54 PDT 2024
================
@@ -472,7 +482,8 @@ AArch64TargetMachine::getSubtargetImpl(const Function &F) const {
resetTargetOptions(F);
I = std::make_unique<AArch64Subtarget>(
TargetTriple, CPU, TuneCPU, FS, *this, isLittle, MinSVEVectorSize,
- MaxSVEVectorSize, IsStreaming, IsStreamingCompatible, HasMinSize);
+ MaxSVEVectorSize, IsStreaming, IsStreamingCompatible,
+ StreamingHazardSize, HasMinSize);
----------------
MacDue wrote:
Ah that makes sense, moved the option now :+1:
https://github.com/llvm/llvm-project/pull/113679
More information about the llvm-commits
mailing list