diff options
| author | Dan Gohman <gohman@apple.com> | 2009-03-03 17:44:54 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-03-03 17:44:54 +0000 |
| commit | 9a8a28da99d72c97b4bd4b53870306a32f8eacf3 (patch) | |
| tree | fec302df560d4eadd96a712b16a492a9656e5b36 | |
| parent | cabb41d15ae35f61a60b4928020587aea086f53c (diff) | |
| download | bcm5719-llvm-9a8a28da99d72c97b4bd4b53870306a32f8eacf3.tar.gz bcm5719-llvm-9a8a28da99d72c97b4bd4b53870306a32f8eacf3.zip | |
Make a comment less terse.
llvm-svn: 65953
| -rw-r--r-- | llvm/include/llvm/BasicBlock.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index 54f3690096e..521815f53c2 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/include/llvm/BasicBlock.h @@ -103,7 +103,8 @@ public: Function *getParent() { return Parent; } /// use_back - Specialize the methods defined in Value, as we know that an - /// BasicBlock can only be used by Instructions (specifically PHI and terms). + /// BasicBlock can only be used by Instructions (specifically PHI nodes and + /// terminators). Instruction *use_back() { return cast<Instruction>(*use_begin());} const Instruction *use_back() const { return cast<Instruction>(*use_begin());} |

