We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc39d8 commit bd27de7Copy full SHA for bd27de7
llvm/lib/Target/AArch64/AArch64Subtarget.h
@@ -180,10 +180,6 @@ class AArch64Subtarget final : public AArch64GenSubtargetInfo {
180
/// Returns the size of memory region that if accessed by both the CPU and
181
/// the SME unit could result in a hazard. 0 = disabled.
182
unsigned getStreamingHazardSize() const {
183
- // If StreamingHazardSize has been explicitly set to a value, use that.
184
- // Otherwise, default to 1024 bytes when both SME and SVE are available
185
- // (without FA64), for all other configurations default to no streaming
186
- // hazards.
187
return StreamingHazardSize.value_or(
188
!hasSMEFA64() && hasSME() && hasSVE() ? 1024 : 0);
189
}
0 commit comments