[llvm-commits] [llvm] r93261 - /llvm/trunk/lib/CodeGen/LiveInterval.cpp

Bob Wilson bob.wilson at apple.com
Tue Jan 12 14:18:56 PST 2010


Author: bwilson
Date: Tue Jan 12 16:18:56 2010
New Revision: 93261

URL: http://llvm.org/viewvc/llvm-project?rev=93261&view=rev
Log:
Fix a comment typo.

Modified:
    llvm/trunk/lib/CodeGen/LiveInterval.cpp

Modified: llvm/trunk/lib/CodeGen/LiveInterval.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveInterval.cpp?rev=93261&r1=93260&r2=93261&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Tue Jan 12 16:18:56 2010
@@ -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





More information about the llvm-commits mailing list