diff options
author | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2019-02-06 17:36:18 +0000 |
---|---|---|
committer | Bjorn Pettersson <bjorn.a.pettersson@ericsson.com> | 2019-02-06 17:36:18 +0000 |
commit | 350352c8a57cc1edc7be319dcb0cccc3f57a315d (patch) | |
tree | 53c0b16558837521d82f69f2996072ed2c072c5a | |
parent | e288c526f1f4b4af400742dcbec2277679db6af8 (diff) | |
download | bcm5719-llvm-350352c8a57cc1edc7be319dcb0cccc3f57a315d.tar.gz bcm5719-llvm-350352c8a57cc1edc7be319dcb0cccc3f57a315d.zip |
[SelectionDAG] Cleanup some code comments. NFC
Don't repeat the function name in some doxygen
comments.
(Just a minor cleanup, while testing to push
from the git monorepo setup.)
llvm-svn: 353317
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index 558266e485b..81941d55007 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -669,8 +669,8 @@ public: void visit(unsigned Opcode, const User &I); - /// getCopyFromRegs - If there was virtual register allocated for the value V - /// emit CopyFromReg of the specified type Ty. Return empty SDValue() otherwise. + /// If there was virtual register allocated for the value V emit CopyFromReg + /// of the specified type Ty. Return empty SDValue() otherwise. SDValue getCopyFromRegs(const Value *V, Type *Ty); /// If we have dangling debug info that describes \p Variable, or an @@ -679,8 +679,8 @@ public: void dropDanglingDebugInfo(const DILocalVariable *Variable, const DIExpression *Expr); - // resolveDanglingDebugInfo - if we saw an earlier dbg_value referring to V, - // generate the debug data structures now that we've seen its definition. + // If we saw an earlier dbg_value referring to V, generate the debug data + // structures now that we've seen its definition. void resolveDanglingDebugInfo(const Value *V, SDValue Val); SDValue getValue(const Value *V); |