[polly] b554c64 - [polly] Fix type in function name. NFC.
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Mon May 9 16:22:39 PDT 2022
Author: Michael Kruse
Date: 2022-05-09T18:19:38-05:00
New Revision: b554c643c5bc3688fd0dfa646480b8337023a6fd
URL: https://github.com/llvm/llvm-project/commit/b554c643c5bc3688fd0dfa646480b8337023a6fd
DIFF: https://github.com/llvm/llvm-project/commit/b554c643c5bc3688fd0dfa646480b8337023a6fd.diff
LOG: [polly] Fix type in function name. NFC.
Added:
Modified:
polly/lib/Transform/ScheduleTreeTransform.cpp
Removed:
################################################################################
diff --git a/polly/lib/Transform/ScheduleTreeTransform.cpp b/polly/lib/Transform/ScheduleTreeTransform.cpp
index 01f18eadb4d9d..fad9eb25173f5 100644
--- a/polly/lib/Transform/ScheduleTreeTransform.cpp
+++ b/polly/lib/Transform/ScheduleTreeTransform.cpp
@@ -1185,7 +1185,7 @@ isl::schedule_node polly::applyRegisterTiling(isl::schedule_node Node,
/// Find statements and sub-loops in (possibly nested) sequences.
static void
-collectFussionableStmts(isl::schedule_node Node,
+collectFissionableStmts(isl::schedule_node Node,
SmallVectorImpl<isl::schedule_node> &ScheduleStmts) {
if (isBand(Node) || isLeaf(Node)) {
ScheduleStmts.push_back(Node);
@@ -1195,7 +1195,7 @@ collectFussionableStmts(isl::schedule_node Node,
if (Node.has_children()) {
isl::schedule_node C = Node.first_child();
while (true) {
- collectFussionableStmts(C, ScheduleStmts);
+ collectFissionableStmts(C, ScheduleStmts);
if (!C.has_next_sibling())
break;
C = C.next_sibling();
@@ -1209,7 +1209,7 @@ isl::schedule polly::applyMaxFission(isl::schedule_node BandToFission) {
isl::schedule_node BandBody = BandToFission.child(0);
SmallVector<isl::schedule_node> FissionableStmts;
- collectFussionableStmts(BandBody, FissionableStmts);
+ collectFissionableStmts(BandBody, FissionableStmts);
size_t N = FissionableStmts.size();
// Collect the domain for each of the statements that will get their own loop.
More information about the llvm-commits
mailing list