summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorNadav Rotem <nrotem@apple.com>2012-09-13 14:51:00 +0000
committerNadav Rotem <nrotem@apple.com>2012-09-13 14:51:00 +0000
commit2bd25fed2966aad94abb81e46de533fdb9fd1441 (patch)
tree91f29d5ce889ac7e1c0a3978d6a389c674ad6324 /llvm/lib/CodeGen
parentd40ca2f581b55abb3e4d43009db9e4cf497c69c6 (diff)
downloadbcm5719-llvm-2bd25fed2966aad94abb81e46de533fdb9fd1441.tar.gz
bcm5719-llvm-2bd25fed2966aad94abb81e46de533fdb9fd1441.zip
Fix a typo.
llvm-svn: 163801
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/StackColoring.cpp2
1 files changed, 1 insertions, 1 deletions
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;
OpenPOWER on IntegriCloud