aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-01-12 04:30:26 +0000
committerDan Gohman <gohman@apple.com>2010-01-12 04:30:26 +0000
commit5c9cf19d1e7d044e786f03331bc3f004966a69d2 (patch)
tree09f495c414aefef4acc7bc9819a918f74e2aefb1 /lib/CodeGen
parent797c440caf24e92b16b9a87a39ef2f5c4cfb60f0 (diff)
downloadexternal_llvm-5c9cf19d1e7d044e786f03331bc3f004966a69d2.zip
external_llvm-5c9cf19d1e7d044e786f03331bc3f004966a69d2.tar.gz
external_llvm-5c9cf19d1e7d044e786f03331bc3f004966a69d2.tar.bz2
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp
index e10cf82..8bc95d3 100644
--- a/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -78,7 +78,7 @@ unsigned FastISel::getRegForValue(Value *V) {
// Look up the value to see if we already have a register for it. We
// cache values defined by Instructions across blocks, and other values
// only locally. This is because Instructions already have the SSA
- // def-dominatess-use requirement enforced.
+ // def-dominates-use requirement enforced.
if (ValueMap.count(V))
return ValueMap[V];
unsigned Reg = LocalValueMap[V];