Skip to content

Commit 5aafc6d

Browse files
authored
[Polly] Fix typos discovered by codespell (llvm#124545)
Patch created using the following command line: ```bash codespell polly --skip="*.pdf,polly/lib/External/*" --write-changes \ --ignore-words-list=couter,createor,distribues,doble,identty,indention,indx,olt,ore,padd,sais,te,theses ```
1 parent 62340ff commit 5aafc6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+60
-60
lines changed

polly/docs/Architecture.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ executed in the so-called **Inliner cycle**, This is again a set of **Scalar
2727
Simplification** passes, a set of **Simple Loop Optimizations**, and the
2828
**Inliner** itself. Even though these passes make up the majority of the LLVM
2929
pass pipeline, the primary goal of these passes is still canonicalization
30-
without loosing semantic information that complicates later analysis. As part of
30+
without losing semantic information that complicates later analysis. As part of
3131
the inliner cycle, the LLVM inliner step-by-step tries to inline functions, runs
3232
canonicalization passes to exploit newly exposed simplification opportunities,
3333
and then tries to inline the further simplified functions. Some simple loop

polly/docs/doxygen.cfg.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ HTML_STYLESHEET =
10661066
# defined cascading style sheet that is included after the standard style sheets
10671067
# created by doxygen. Using this option one can overrule certain style aspects.
10681068
# This is preferred over using HTML_STYLESHEET since it does not replace the
1069-
# standard style sheet and is therefor more robust against future updates.
1069+
# standard style sheet and is therefore more robust against future updates.
10701070
# Doxygen will copy the style sheet file to the output directory. For an example
10711071
# see the documentation.
10721072
# This tag requires that the tag GENERATE_HTML is set to YES.
@@ -1950,7 +1950,7 @@ PREDEFINED =
19501950
EXPAND_AS_DEFINED =
19511951

19521952
# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
1953-
# remove all refrences to function-like macros that are alone on a line, have an
1953+
# remove all references to function-like macros that are alone on a line, have an
19541954
# all uppercase name, and do not end with a semicolon. Such function macros are
19551955
# typically used for boiler-plate code, and will confuse the parser if not
19561956
# removed.

polly/include/polly/CodeGen/RuntimeDebugBuilder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ struct RuntimeDebugBuilder {
118118

119119
/// Call fflush
120120
///
121-
/// @parma Builder The builder used to insert the code.
121+
/// @param Builder The builder used to insert the code.
122122
static void createFlush(PollyIRBuilder &Builder);
123123
};
124124
} // namespace polly

polly/include/polly/DependenceInfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ struct DependenceAnalysis final : public AnalysisInfoMixin<DependenceAnalysis> {
211211

212212
/// Invalidate the dependence information and recompute it when needed
213213
/// again.
214-
/// May be required when the underlaying Scop was changed in a way that
214+
/// May be required when the underlying Scop was changed in a way that
215215
/// would add new dependencies (e.g. between new statement instances
216216
/// insierted into the SCoP) or intentionally breaks existing ones. It is
217217
/// not required when updating the schedule that conforms the existing
@@ -251,7 +251,7 @@ class DependenceInfo final : public ScopPass {
251251
const Dependences &recomputeDependences(Dependences::AnalysisLevel Level);
252252

253253
/// Invalidate the dependence information and recompute it when needed again.
254-
/// May be required when the underlaying Scop was changed in a way that would
254+
/// May be required when the underlying Scop was changed in a way that would
255255
/// add new dependencies (e.g. between new statement instances insierted into
256256
/// the SCoP) or intentionally breaks existing ones. It is not required when
257257
/// updating the schedule that conforms the existing dependencies.

polly/include/polly/ScopInfo.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,7 @@ class ScopStmt final {
14941494
/// @param Access The access to add.
14951495
/// @param Prepend If true, will add @p Access before all other instructions
14961496
/// (instead of appending it).
1497-
void addAccess(MemoryAccess *Access, bool Preprend = false);
1497+
void addAccess(MemoryAccess *Access, bool Prepend = false);
14981498

14991499
/// Remove a MemoryAccess from this statement.
15001500
///

polly/include/polly/Support/SCEVAffinator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class SCEVAffinator final : public llvm::SCEVVisitor<SCEVAffinator, PWACtx> {
5050
/// Check an <nsw> AddRec for the loop @p L is cached.
5151
bool hasNSWAddRecForLoop(llvm::Loop *L) const;
5252

53-
/// Return the LoopInfo used by thi object.
53+
/// Return the LoopInfo used by the object.
5454
llvm::LoopInfo *getLI() const { return &LI; }
5555

5656
private:

polly/include/polly/Support/ScopHelper.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ using RecordedAssumptionsTy = llvm::SmallVector<Assumption, 8>;
8383
///
8484
/// This function will add the assumption to the RecordedAssumptions. This
8585
/// collection will be added (@see addAssumption) to the assumed context once
86-
/// all paramaters are known and the context is fully built.
86+
/// all parameters are known and the context is fully built.
8787
///
8888
/// @param RecordedAssumption container which keeps all recorded assumptions.
8989
/// @param Kind The assumption kind describing the underlying cause.
@@ -132,7 +132,7 @@ using BoxedLoopsSetTy = llvm::SetVector<const llvm::Loop *>;
132132
/// isNull(), isInstruction(), isLoad(), isStore(), ..., isMemTransferInst(),
133133
/// operator bool(), operator!()
134134
///
135-
/// The functions isa, cast, cast_or_null, dyn_cast are modeled te resemble
135+
/// The functions isa, cast, cast_or_null, dyn_cast are modeled to resemble
136136
/// those from llvm/Support/Casting.h. Partial template function specialization
137137
/// is currently not supported in C++ such that those cannot be used directly.
138138
/// (llvm::isa could, but then llvm:cast etc. would not have the expected

polly/lib/Analysis/ScopBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2522,7 +2522,7 @@ combineReductionType(MemoryAccess::ReductionType RT0,
25222522
return MemoryAccess::RT_NONE;
25232523
}
25242524

2525-
/// True if @p AllAccs intersects with @p MemAccs execpt @p LoadMA and @p
2525+
/// True if @p AllAccs intersects with @p MemAccs except @p LoadMA and @p
25262526
/// StoreMA
25272527
bool hasIntersectingAccesses(isl::set AllAccs, MemoryAccess *LoadMA,
25282528
MemoryAccess *StoreMA, isl::set Domain,

polly/lib/Analysis/ScopDetectionDiagnostic.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static Statistic RejectStatistics[] = {
7171
SCOP_STAT(LoopOnlySomeLatches, "Not all loop latches in scop"),
7272
SCOP_STAT(FuncCall, "Function call with side effects"),
7373
SCOP_STAT(NonSimpleMemoryAccess,
74-
"Compilated access semantics (volatile or atomic)"),
74+
"Complicated access semantics (volatile or atomic)"),
7575
SCOP_STAT(Alias, "Base address aliasing"),
7676
SCOP_STAT(Other, ""),
7777
SCOP_STAT(IntToPtr, "Integer to pointer conversions"),

polly/lib/CodeGen/IslNodeBuilder.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ bool IslNodeBuilder::preloadInvariantEquivClass(
11591159
// For an equivalence class of invariant loads we pre-load the representing
11601160
// element with the unified execution context. However, we have to map all
11611161
// elements of the class to the one preloaded load as they are referenced
1162-
// during the code generation and therefor need to be mapped.
1162+
// during the code generation and therefore need to be mapped.
11631163
const MemoryAccessList &MAs = IAClass.InvariantAccesses;
11641164
if (MAs.empty())
11651165
return true;

polly/lib/CodeGen/Utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static BasicBlock *splitEdge(BasicBlock *Prev, BasicBlock *Succ,
4646
// llvm::SplitCriticalEdge is more efficient than
4747
// llvm::SplitBlockPredecessors, which is more general. In the future we might
4848
// either modify llvm::SplitCriticalEdge to allow skipping the critical edge
49-
// check; or Copy&Pase it here.
49+
// check; or Copy&Paste it here.
5050
BasicBlock *MiddleBlock = SplitBlockPredecessors(
5151
Succ, ArrayRef<BasicBlock *>(Prev), Suffix, DT, LI);
5252

polly/lib/Support/SCEVAffinator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ PWACtx SCEVAffinator::visitUDivExpr(const SCEVUDivExpr *Expr) {
502502
}
503503

504504
// TODO: One can represent the dividend as piece-wise function to be more
505-
// precise but therefor a heuristic is needed.
505+
// precise but therefore a heuristic is needed.
506506

507507
// Assume a non-negative dividend.
508508
takeNonNegativeAssumption(DividendPWAC, RecordedAssumptions);

polly/lib/Support/ScopHelper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ struct ScopExpander final : SCEVVisitor<ScopExpander, const SCEV *> {
456456

457457
// FIXME: This emits a SCEV for GenSE (since GenLRepl will refer to the
458458
// induction variable of a generated loop), so we should not use SCEVVisitor
459-
// with it. Howver, it still contains references to the SCoP region.
459+
// with it. However, it still contains references to the SCoP region.
460460
return visit(Evaluated);
461461
}
462462
///}

polly/lib/Transform/DeLICM.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ class DeLICMImpl final : public ZoneAlgorithm {
12901290
continue;
12911291
}
12921292

1293-
// Check for more than one element acces per statement instance.
1293+
// Check for more than one element access per statement instance.
12941294
// Currently we expect write accesses to be functional, eg. disallow
12951295
//
12961296
// { Stmt[0] -> [i] : 0 <= i < 2 }

polly/lib/Transform/ManualOptimizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class SearchTransformVisitor final
149149
// transformed in innermost-first order.
150150
isl::schedule Result;
151151

152-
/// Check wether a schedule after a transformation is legal. Return the old
152+
/// Check whether a schedule after a transformation is legal. Return the old
153153
/// schedule without the transformation.
154154
isl::schedule
155155
checkDependencyViolation(llvm::MDNode *LoopMD, llvm::Value *CodeRegion,

polly/lib/Transform/MatmulOptimizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,7 @@ static bool isTCPattern(isl::schedule_node Node, const Dependences *D,
17591759
//
17601760
// For example, this covers the matrix multiplication pattern after a full
17611761
// run of -polly-optree and -polly-delicm, where the write access is not
1762-
// through the original memory access, but trough a PHI node that was
1762+
// through the original memory access, but through a PHI node that was
17631763
// delicmed. Subsequently, such band nodes will be replaced by a single band
17641764
// node.
17651765
//

polly/lib/Transform/ScheduleOptimizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ static void runIslScheduleOptimizer(
771771
return;
772772
}
773773

774-
// Apply ISL's algorithm only if not overriden by the user. Note that
774+
// Apply ISL's algorithm only if not overridden by the user. Note that
775775
// post-rescheduling optimizations (tiling, pattern-based, prevectorization)
776776
// rely on the coincidence/permutable annotations on schedule tree bands that
777777
// are added by the rescheduling analyzer. Therefore, disabling the

polly/lib/Transform/ScheduleTreeTransform.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -572,13 +572,13 @@ class BandCollapseRewriter final
572572
isl::schedule_node_band Band = RootBand;
573573
isl::ctx Ctx = Band.ctx();
574574

575-
// Do not merge permutable band to avoid loosing the permutability property.
575+
// Do not merge permutable band to avoid losing the permutability property.
576576
// Cannot collapse even two permutable loops, they might be permutable
577577
// individually, but not necassarily across.
578578
if (unsignedFromIslSize(Band.n_member()) > 1u && Band.permutable())
579579
return getBase().visitBand(Band);
580580

581-
// Find collapsable bands.
581+
// Find collapsible bands.
582582
SmallVector<isl::schedule_node_band> Nest;
583583
int NumTotalLoops = 0;
584584
isl::schedule_node Body;
@@ -884,10 +884,10 @@ class GreedyFusionRewriter final
884884
collectPotentiallyFusableBands(Child, Bands, Child);
885885
}
886886

887-
// Direct children that had at least one of its decendants fused.
887+
// Direct children that had at least one of its descendants fused.
888888
SmallDenseSet<isl_schedule_node *, 4> ChangedDirectChildren;
889889

890-
// Fuse neigboring bands until reaching the end of candidates.
890+
// Fuse neighboring bands until reaching the end of candidates.
891891
int i = 0;
892892
while (i + 1 < (int)Bands.size()) {
893893
isl::schedule Fused =

polly/test/CodeGen/LoopParallelMD/do_not_mutate_debug_info.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; This test checks that we do not accidently mutate the debug info when
1+
; This test checks that we do not accidentally mutate the debug info when
22
; inserting loop parallel metadata.
33
; RUN: opt %loadNPMPolly < %s -S -polly -passes=polly-codegen -polly-ast-detect-parallel | FileCheck %s
44
; CHECK-NOT: !7 = !{!7}

polly/test/CodeGen/multiple-codegens.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
; RegionPassManager. -polly-codegen must not reuse the -polly-ast analysis the
77
; was created for the first -polly-scops pass.
88
; The current solution is that only the first -polly-codegen is allowed to
9-
; generate code, the second detects it is re-using an IslAst that belongs to a
9+
; generate code, the second detects it is reusing an IslAst that belongs to a
1010
; different ScopInfo.
1111
;
1212
; int a, b, c;

polly/test/CodeGen/multiple-scops-in-a-row.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
; We explicitly check here that the second scop is not code generated. Later
88
; improvements may make this possible (e.g., Polly gaining support for
9-
; parameteric conditional expressions or a changed code generation order).
9+
; parametric conditional expressions or a changed code generation order).
1010
; However, in case this happens, we want to ensure this test case is been
1111
; reasoned about and updated accordingly.
1212

polly/test/CodeGen/reduction_2.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if.end: ; preds = %if.then, %for.end
8888
declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i32, i1) nounwind
8989

9090
; This is a negative test. We can prove that RED[0] in the conditional after
91-
; the loop is dereferencable and consequently expand the SCoP from the
91+
; the loop is dereferenceable and consequently expand the SCoP from the
9292
; loop to include the conditional. However, during SCoP generation we realize
9393
; that, while RED[0] is invariant, it is written to as part of the same scop
9494
; and can consequently not be hoisted. Hence, we invalidate the scop.

polly/test/CodeGen/scalar-store-from-same-bb.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; RUN: -passes=polly-codegen -S < %s | FileCheck %s
33

44
; This test ensures that the expression N + 1 that is stored in the phi-node
5-
; alloca, is directly computed and not incorrectly transfered through memory.
5+
; alloca, is directly computed and not incorrectly transferred through memory.
66

77
; CHECK: store i64 [[REG:%.*]], ptr %res.phiops
88
; CHECK: [[REG]] = add i64 %N, 1

polly/test/CodeGen/test-invalid-operands-for-select.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
;
33
; Check that we do not crash as described here: http://llvm.org/PR21167
44
;
5-
; In case the pieceweise affine function used to create an isl_ast_expr
5+
; In case the piecewise affine function used to create an isl_ast_expr
66
; had empty cases (e.g., with contradicting constraints on the
77
; parameters), it was possible that the condition of the isl_ast_expr
88
; select was not a comparison but a constant (thus of type i64).

polly/test/DeLICM/load-in-cond-inf-loop.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: opt %loadNPMPolly '-passes=print<polly-delicm>' -disable-output < %s | FileCheck %s
22

3-
; When %b is 0, %for.body13 is an infite loop. In this case the loaded
3+
; When %b is 0, %for.body13 is an infinite loop. In this case the loaded
44
; value %1 is not used anywhere.
55
; This is a problem when DeLICM tries to map %1 to %arrayidx16 because
66
; %1 has no corresponding when %b == 0 and therefore hat no location

polly/test/DeLICM/pr41656.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;
55
; This test case has an InvalidContext such that part of the predecessors
66
; of for.body.us.i lie within the invalid context. This causes a
7-
; consistency check withing the invalid context of PR41656 to fail.
7+
; consistency check within the invalid context of PR41656 to fail.
88
;
99
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
1010

polly/test/DeLICM/pr48783.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;
55
; PHI predecessors of statement instances can only be reliably derived in defined behaviour situations. In this case, the inner loop's counter would overflow when its upper bound (%call24) is lower than its lower bound (2). However, due to the nsw flag, this would be undefined behavior and therefore not added to any runtime-check context, but to the defined-behaviour context.
66
;
7-
; Dereived from test case pr41656.ll
7+
; Derived from test case pr41656.ll
88
;
99
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
1010

polly/test/DeLICM/reject_outofquota.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ return:
6666
; CHECK: maximal number of operations exceeded during zone analysis
6767

6868
; Check that even if the quota was exceeded in DeLICM, DependenceInfo is still
69-
; successfull since it uses a different operations counter.
69+
; successful since it uses a different operations counter.
7070
;
7171
; DEP: RAW dependences:
7272
; DEP-NOT: n/a

polly/test/IstAstInfo/reduction_modulo_schedule_multiple_dimensions_2.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: opt %loadNPMPolly '-passes=polly-import-jscop,print<polly-ast>' -polly-ast-detect-parallel -disable-output < %s | FileCheck %s
22
;
3-
; Verify that the outer dimension doesnt't carry reduction dependences
3+
; Verify that the outer dimension doesn't carry reduction dependences
44
;
55
; CHECK-NOT:#pragma known-parallel reduction
66
; CHECK: #pragma known-parallel

polly/test/IstAstInfo/reduction_modulo_schedule_multiple_dimensions_3.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: opt %loadNPMPolly '-passes=polly-import-jscop,print<polly-ast>' -polly-ast-detect-parallel -disable-output < %s | FileCheck %s
22
;
3-
; Verify that the outer dimension doesnt't carry reduction dependences
3+
; Verify that the outer dimension doesn't carry reduction dependences
44
;
55
; CHECK-NOT:#pragma known-parallel reduction
66
; CHECK: #pragma known-parallel

polly/test/IstAstInfo/reduction_modulo_schedule_multiple_dimensions_4.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: opt %loadNPMPolly '-passes=polly-import-jscop,print<polly-ast>' -polly-ast-detect-parallel -disable-output < %s | FileCheck %s
22
;
3-
; Verify that the outer dimension doesnt't carry reduction dependences
3+
; Verify that the outer dimension doesn't carry reduction dependences
44
;
55
; CHECK-NOT:#pragma known-parallel reduction
66
; CHECK: #pragma known-parallel

polly/test/ScheduleOptimizer/pattern-matching-based-opts-after-delicm.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
; Check that the pattern matching detects the matrix multiplication pattern
99
; after a full run of -polly-optree and -polly-delicm, where the write access
10-
; is not through the original memory access, but trough a PHI node that was
10+
; is not through the original memory access, but through a PHI node that was
1111
; delicmed. This test covers the polybench 2mm and 3mm cases.
1212
;
1313
; This test case generates the following schedule, which contains filters:

polly/test/ScheduleOptimizer/pattern-matching-based-opts-after-delicm_2.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;
66
; Check that the pattern matching detects the tensor contraction pattern
77
; after a full run of -polly-delicm. This test case generates the following
8-
; schedule, which contans two band nodes. Without DeLICM two statement are
8+
; schedule, which contains two band nodes. Without DeLICM two statement are
99
; generated.
1010
;
1111
; domain: "{ Stmt5[i0, i1, i2, i3, i4, i5] : 0 <= i0 <= 31 and 0 <= i1 <= 31 and

polly/test/ScopDetect/scev_remove_max.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; RUN: opt %loadNPMPolly '-passes=print<polly-detect>' < %s
22

3-
; This test case helps to determine wether SCEVRemoveMax::remove produces
3+
; This test case helps to determine whether SCEVRemoveMax::remove produces
44
; an infinite loop and a segmentation fault, if it processes, for example,
55
; '((-1 + (-1 * %b1)) umax {(-1 + (-1 * %yStart)),+,-1}<%.preheader>)'.
66
;

polly/test/ScopDetectionDiagnostics/ReportLoopHasNoExit.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; XFAIL: *
22

33
; The test case stopped making sense after r310940 that added infinite loops to
4-
; the PostDominatorTree. Infinite loops are postdominated ony by the virtual
4+
; the PostDominatorTree. Infinite loops are postdominated only by the virtual
55
; root, which causes them not to appear in regions in ScopDetection anymore.
66

77
; RUN: opt %loadNPMPolly -pass-remarks-missed="polly-detect" -polly-allow-nonaffine-loops '-passes=print<polly-detect>' -disable-output < %s 2>&1 | FileCheck %s

polly/test/ScopInfo/NonAffine/non_affine_loop_used_later.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; RUN: opt %loadNPMPolly -polly-allow-nonaffine -polly-allow-nonaffine-branches -polly-allow-nonaffine-loops '-passes=print<polly-detect>,print<polly-function-scops>' -disable-output < %s 2>&1 | FileCheck %s
22
; RUN: opt %loadNPMPolly -polly-allow-nonaffine -polly-allow-nonaffine-branches -polly-allow-nonaffine-loops -polly-unprofitable-scalar-accs=true -polly-process-unprofitable=false '-passes=print<polly-detect>,print<polly-function-scops>' -disable-output < %s 2>&1 | FileCheck %s --check-prefix=PROFIT
33
;
4-
; Verify that we over approximate the read acces of A[j] in the last statement as j is
4+
; Verify that we over approximate the read access of A[j] in the last statement as j is
55
; computed in a non-affine loop we do not model.
66
;
77
; CHECK: Function: f

polly/test/ScopInfo/allow-all-parameters-dereferencable.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
; CODE-RTC-NEXT: br i1 %{{[a-zA-Z0-9\.]*}}, label %polly.preload.exec, label %polly.preload.merge
2929

3030
; Check that we don't generate a runtime check because we treat all
31-
; parameters as dereferencable.
31+
; parameters as dereferenceable.
3232
; CODE-NOT: polly.preload.cond: ; preds = %polly.preload.begin
3333
; CODE-NOT: br i1 %{{r1:[a-zA-Z0-9]*}}, label %polly.preload.exec, label %polly.preload.merge
3434

polly/test/ScopInfo/invariant_same_loop_bound_multiple_times-1.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; RUN: opt %loadNPMPolly '-passes=print<polly-function-scops>' -polly-invariant-load-hoisting=true -disable-output < %s 2>&1 | FileCheck %s
22
;
33
; Verify that we only have one parameter and one invariant load for all
4-
; three loads that occure in the region but actually access the same
4+
; three loads that occur in the region but actually access the same
55
; location. Also check that the execution context is the most generic
66
; one, e.g., here the universal set.
77
;

0 commit comments

Comments
 (0)