diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-12 16:53:40 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-12 16:53:40 +0000 |
commit | 07895a6f13ea3f6043aeda58ba7c2662da57bb94 (patch) | |
tree | 1bafb2124650161428fabf0e4795660ba2fef54b | |
parent | 58ba6298a1d6a1b2440d486844c7b9dc9c13e290 (diff) | |
download | external_llvm-07895a6f13ea3f6043aeda58ba7c2662da57bb94.zip external_llvm-07895a6f13ea3f6043aeda58ba7c2662da57bb94.tar.gz external_llvm-07895a6f13ea3f6043aeda58ba7c2662da57bb94.tar.bz2 |
Correct a function name in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59143 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/LiveInterval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveInterval.h b/include/llvm/CodeGen/LiveInterval.h index f050d47..024ca92 100644 --- a/include/llvm/CodeGen/LiveInterval.h +++ b/include/llvm/CodeGen/LiveInterval.h @@ -198,7 +198,7 @@ namespace llvm { return VNI; } - /// addKillForValNum - Add a kill instruction index to the specified value + /// addKill - Add a kill instruction index to the specified value /// number. static void addKill(VNInfo *VNI, unsigned KillIdx) { SmallVector<unsigned, 4> &kills = VNI->kills; |