[llvm-commits] [llvm] r63104 - /llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
Dan Gohman
gohman at apple.com
Tue Jan 27 09:28:24 PST 2009
Author: djg
Date: Tue Jan 27 11:28:23 2009
New Revision: 63104
URL: http://llvm.org/viewvc/llvm-project?rev=63104&view=rev
Log:
Make some comments doxygen-friendly.
Modified:
llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAG.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAG.h?rev=63104&r1=63103&r2=63104&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAG.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAG.h Tue Jan 27 11:28:23 2009
@@ -533,11 +533,11 @@
SDValue getIndexedStore(SDValue OrigStoe, SDValue Base,
SDValue Offset, ISD::MemIndexedMode AM);
- // getSrcValue - Construct a node to track a Value* through the backend.
+ /// getSrcValue - Construct a node to track a Value* through the backend.
SDValue getSrcValue(const Value *v);
- // getMemOperand - Construct a node to track a memory reference
- // through the backend.
+ /// getMemOperand - Construct a node to track a memory reference
+ /// through the backend.
SDValue getMemOperand(const MachineMemOperand &MO);
/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
@@ -814,10 +814,10 @@
void allnodes_clear();
- // List of non-single value types.
+ /// VTList - List of non-single value types.
std::vector<SDVTList> VTList;
- // Maps to auto-CSE operations.
+ /// CondCodeNodes - Maps to auto-CSE operations.
std::vector<CondCodeSDNode*> CondCodeNodes;
std::vector<SDNode*> ValueTypeNodes;
More information about the llvm-commits
mailing list