Skip to content

Commit bd27de7

Browse files
authored
Update llvm/lib/Target/AArch64/AArch64Subtarget.h
1 parent 0cc39d8 commit bd27de7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

llvm/lib/Target/AArch64/AArch64Subtarget.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,6 @@ class AArch64Subtarget final : public AArch64GenSubtargetInfo {
180180
/// Returns the size of memory region that if accessed by both the CPU and
181181
/// the SME unit could result in a hazard. 0 = disabled.
182182
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.
187183
return StreamingHazardSize.value_or(
188184
!hasSMEFA64() && hasSME() && hasSVE() ? 1024 : 0);
189185
}

0 commit comments

Comments
 (0)