From 2bd25fed2966aad94abb81e46de533fdb9fd1441 Mon Sep 17 00:00:00 2001 From: Nadav Rotem Date: Thu, 13 Sep 2012 14:51:00 +0000 Subject: Fix a typo. llvm-svn: 163801 --- llvm/lib/CodeGen/StackColoring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm') diff --git a/llvm/lib/CodeGen/StackColoring.cpp b/llvm/lib/CodeGen/StackColoring.cpp index 1a7801abd8a..832d4d1ca5d 100644 --- a/llvm/lib/CodeGen/StackColoring.cpp +++ b/llvm/lib/CodeGen/StackColoring.cpp @@ -577,7 +577,7 @@ void StackColoring::removeInvalidSlotRanges() { // read or write. Memory accesses outside of the lifetime zone are a clear // violation, but address calculations are okay. This can happen when // GEPs are hoisted outside of the lifetime zone. - // So, in here we only check instrucitons which can read or write memory. + // So, in here we only check instructions which can read or write memory. if (!I->mayLoad() && !I->mayStore()) continue; -- cgit v1.2.3