From 0ef39e33d743247cb23d0fa4a26e0ffa2788f664 Mon Sep 17 00:00:00 2001 From: Jay Foad Date: Mon, 31 Jul 2023 11:35:57 +0100 Subject: [PATCH] [StackColoring] Fix typo in comment --- llvm/lib/CodeGen/StackColoring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp index 66b9086e1d883..4d69b6104f683 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.