[llvm] r353317 - [SelectionDAG] Cleanup some code comments. NFC
Bjorn Pettersson via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 6 09:36:18 PST 2019
Author: bjope
Date: Wed Feb 6 09:36:18 2019
New Revision: 353317
URL: http://llvm.org/viewvc/llvm-project?rev=353317&view=rev
Log:
[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.)
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h?rev=353317&r1=353316&r2=353317&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h Wed Feb 6 09:36:18 2019
@@ -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);
More information about the llvm-commits
mailing list