diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-01-12 22:18:56 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-01-12 22:18:56 +0000 |
commit | 5b562906ac33aff9fdc5255ef25c755b3948e093 (patch) | |
tree | daf6aedda46c8cf0ea702656456e64ab93efb38a /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 0c523e513af7e0f53336822c2a18abbfbee342f9 (diff) | |
download | bcm5719-llvm-5b562906ac33aff9fdc5255ef25c755b3948e093.tar.gz bcm5719-llvm-5b562906ac33aff9fdc5255ef25c755b3948e093.zip |
Fix a comment typo.
llvm-svn: 93261
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index efcdf494deb..e207f607dad 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/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 |