diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-18 04:31:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-18 04:31:10 +0000 |
commit | cf972ff7cb9576667d72b1b165f98baceb5bb927 (patch) | |
tree | 901e30371f1a8837895c8100abab7447d9d2aece /llvm/lib | |
parent | 49ff5f047716f61766a55ef1224181a8b8b3244d (diff) | |
download | bcm5719-llvm-cf972ff7cb9576667d72b1b165f98baceb5bb927.tar.gz bcm5719-llvm-cf972ff7cb9576667d72b1b165f98baceb5bb927.zip |
Fix typeo
llvm-svn: 17938
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.h b/llvm/lib/CodeGen/LiveInterval.h index 55de7e38d84..d67e018b473 100644 --- a/llvm/lib/CodeGen/LiveInterval.h +++ b/llvm/lib/CodeGen/LiveInterval.h @@ -89,7 +89,7 @@ namespace llvm { /// containing the specified position, or end() if the position is past the /// end of the interval. If no LiveRange contains this position, but the /// position is in a hole, this method returns an iterator pointing the the - /// LiveRange immediately after the hold. + /// LiveRange immediately after the hole. iterator advanceTo(iterator I, unsigned Pos) { if (Pos >= endNumber()) return end(); |