[llvm] 0ef39e3 - [StackColoring] Fix typo in comment
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 31 03:36:16 PDT 2023
Author: Jay Foad
Date: 2023-07-31T11:35:57+01:00
New Revision: 0ef39e33d743247cb23d0fa4a26e0ffa2788f664
URL: https://github.com/llvm/llvm-project/commit/0ef39e33d743247cb23d0fa4a26e0ffa2788f664
DIFF: https://github.com/llvm/llvm-project/commit/0ef39e33d743247cb23d0fa4a26e0ffa2788f664.diff
LOG: [StackColoring] Fix typo in comment
Added:
Modified:
llvm/lib/CodeGen/StackColoring.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp
index 66b9086e1d8833..4d69b6104f6837 100644
--- a/llvm/lib/CodeGen/StackColoring.cpp
+++ b/llvm/lib/CodeGen/StackColoring.cpp
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This pass implements the stack-coloring optimization that looks for
-// lifetime markers machine instructions (LIFESTART_BEGIN and LIFESTART_END),
+// lifetime markers machine instructions (LIFETIME_START and LIFETIME_END),
// which represent the possible lifetime of stack slots. It attempts to
// merge disjoint stack slots and reduce the used stack space.
// NOTE: This pass is not StackSlotColoring, which optimizes spill slots.
More information about the llvm-commits
mailing list