summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-01-12 22:18:56 +0000
committerBob Wilson <bob.wilson@apple.com>2010-01-12 22:18:56 +0000
commit86af65552172c9149996600bc3f55bed6f949c8a (patch)
tree79d5bebf2eca1a04592b6ebf7f62d6196ed5b1ff /lib/CodeGen
parentacb4722856a49217e7aa86f6909d51531d3f42cc (diff)
downloadexternal_llvm-86af65552172c9149996600bc3f55bed6f949c8a.zip
external_llvm-86af65552172c9149996600bc3f55bed6f949c8a.tar.gz
external_llvm-86af65552172c9149996600bc3f55bed6f949c8a.tar.bz2
Fix a comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/LiveInterval.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index efcdf49..e207f60 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/lib/CodeGen/LiveInterval.cpp
@@ -10,7 +10,7 @@
// This file implements the LiveRange and LiveInterval classes. Given some
// numbering of each the machine instructions an interval [i, j) is said to be a
// live interval for register v if there is no instruction with number j' > j
-// such that v is live at j' abd there is no instruction with number i' < i such
+// such that v is live at j' and there is no instruction with number i' < i such
// that v is live at i'. In this implementation intervals can have holes,
// i.e. an interval might look like [1,20), [50,65), [1000,1001). Each
// individual range is represented as an instance of LiveRange, and the whole