Fix a typo.
authorNadav Rotem <nrotem@apple.com>
Thu, 13 Sep 2012 14:51:00 +0000 (14:51 +0000)
committerNadav Rotem <nrotem@apple.com>
Thu, 13 Sep 2012 14:51:00 +0000 (14:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163801 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/StackColoring.cpp

index 1a7801abd8a12da9eb4a9902f5136645fe5e1398..832d4d1ca5d3f2758bbe096917dd6e74114c902e 100644 (file)
@@ -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;