Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit f340eac

Browse files
committed
[AArch64][Falkor] Attempt to fix Windows buildbots
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306588 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 4599a3a commit f340eac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Target/AArch64/AArch64TargetTransformInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ unsigned AArch64TTIImpl::getMaxInterleaveFactor(unsigned VF) {
655655
static void
656656
getFalkorUnrollingPreferences(Loop *L, ScalarEvolution &SE,
657657
TargetTransformInfo::UnrollingPreferences &UP) {
658-
const int MaxStridedLoads = 7;
658+
enum { MaxStridedLoads = 7 };
659659
auto countStridedLoads = [](Loop *L, ScalarEvolution &SE) {
660660
int StridedLoads = 0;
661661
// FIXME? We could make this more precise by looking at the CFG and

0 commit comments

Comments
 (0)