Skip to content

Commit eb316ee

Browse files
committed
trivial fix: use lower case
1 parent d3246bd commit eb316ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ bool LoopVectorizationLegality::isVectorizableEarlyExitLoop() {
17891789
SpeculativeLoads.insert(LI);
17901790
LLVM_DEBUG(dbgs() << "LV: Found speculative load: " << *LI << "\n");
17911791
}
1792-
// Support single Speculative load for now.
1792+
// Support single speculative load for now.
17931793
if (NonDerefLoads.size() > 1) {
17941794
reportVectorizationFailure("Loop contains more than one unbound access",
17951795
"TooManySpeculativeLoadInEarlyExitLoop", ORE,

0 commit comments

Comments
 (0)