mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Fix a typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163801 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
032dbee2a9
commit
faf31d01db
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user