Fix a typo.

llvm-svn: 163801
This commit is contained in:
Nadav Rotem 2012-09-13 14:51:00 +00:00
parent d40ca2f581
commit 2bd25fed29
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ void StackColoring::removeInvalidSlotRanges() {
// read or write. Memory accesses outside of the lifetime zone are a clear // read or write. Memory accesses outside of the lifetime zone are a clear
// violation, but address calculations are okay. This can happen when // violation, but address calculations are okay. This can happen when
// GEPs are hoisted outside of the lifetime zone. // 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()) if (!I->mayLoad() && !I->mayStore())
continue; continue;