From 8cc14949053ea4fcba34afc68b30137eff408d66 Mon Sep 17 00:00:00 2001 From: Nadav Rotem Date: Mon, 10 Sep 2012 08:51:46 +0000 Subject: [PATCH] Fix a typo in the comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163496 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/StackColoring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/StackColoring.cpp b/lib/CodeGen/StackColoring.cpp index 9d807bbdd88..b0cbda827ce 100644 --- a/lib/CodeGen/StackColoring.cpp +++ b/lib/CodeGen/StackColoring.cpp @@ -496,8 +496,8 @@ void StackColoring::remapInstructions(DenseMap &SlotRemap) { if (!SlotRemap.count(FromSlot)) continue; - // In a debug build, check that the instruction that we are check is - // inside its expected live range. If the instruction is not inside + // In a debug build, check that the instruction that we are modifying is + // inside the expected live range. If the instruction is not inside // the calculated range then it means that the alloca usage moved // outside of the lifetime markers. #ifndef NDEBUG