diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-27 17:28:23 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-27 17:28:23 +0000 |
commit | 101a90f3d3c3ad9159676ba744b59b3a9d0b4af5 (patch) | |
tree | cd05b14ac784268fa9a0d29becbe5b5b3d0809a6 | |
parent | 26562de2efa73446dbb8ae4cb6fb6b08f1c252a9 (diff) | |
download | external_llvm-101a90f3d3c3ad9159676ba744b59b3a9d0b4af5.zip external_llvm-101a90f3d3c3ad9159676ba744b59b3a9d0b4af5.tar.gz external_llvm-101a90f3d3c3ad9159676ba744b59b3a9d0b4af5.tar.bz2 |
Make some comments doxygen-friendly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63104 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 209fedb..c04436b 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -533,11 +533,11 @@ public: 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 @@ private: 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; |