Fix a comment typo.
authorBob Wilson <bob.wilson@apple.com>
Tue, 12 Jan 2010 22:18:56 +0000 (22:18 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 12 Jan 2010 22:18:56 +0000 (22:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93261 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LiveInterval.cpp

index efcdf494deb2ffc9307dc64d62d96cd125103bb3..e207f607dad2c13e6a678911d1a2f7b11f26b963 100644 (file)
@@ -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