[llvm-commits] [llvm] r163801 - /llvm/trunk/lib/CodeGen/StackColoring.cpp
Nadav Rotem
nrotem at apple.com
Thu Sep 13 07:51:00 PDT 2012
Author: nadav
Date: Thu Sep 13 09:51:00 2012
New Revision: 163801
URL: http://llvm.org/viewvc/llvm-project?rev=163801&view=rev
Log:
Fix a typo.
Modified:
llvm/trunk/lib/CodeGen/StackColoring.cpp
Modified: llvm/trunk/lib/CodeGen/StackColoring.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/StackColoring.cpp?rev=163801&r1=163800&r2=163801&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/StackColoring.cpp (original)
+++ llvm/trunk/lib/CodeGen/StackColoring.cpp Thu Sep 13 09:51:00 2012
@@ -577,7 +577,7 @@
// 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;
More information about the llvm-commits
mailing list