summaryrefslogtreecommitdiff
path: root/include/llvm/Argument.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-25 22:54:55 +0000
committerChris Lattner <sabre@nondot.org>2002-08-25 22:54:55 +0000
commit26199059268a05739c84ebf465fcdbf7ded861df (patch)
tree8ec9d990f4bb669601ba3d8264a774e8bdce0392 /include/llvm/Argument.h
parent969c4ad65dd0c23b68117a08eb28f040af379b0d (diff)
downloadllvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.gz
llvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.bz2
llvm-26199059268a05739c84ebf465fcdbf7ded861df.tar.xz
Convert comments to Doxygen style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Argument.h')
-rw-r--r--include/llvm/Argument.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/Argument.h b/include/llvm/Argument.h
index 6c2458d9d0..7a9acdab1d 100644
--- a/include/llvm/Argument.h
+++ b/include/llvm/Argument.h
@@ -25,7 +25,7 @@ public:
Parent = 0;
}
- // Specialize setName to handle symbol table majik...
+ /// setName - Specialize setName to handle symbol table majik...
virtual void setName(const std::string &name, SymbolTable *ST = 0);
inline const Function *getParent() const { return Parent; }
@@ -39,7 +39,9 @@ public:
virtual void print(std::ostream &OS) const;
- // Methods for support type inquiry through isa, cast, and dyn_cast:
+ /// classof - Methods for support type inquiry through isa, cast, and
+ /// dyn_cast:
+ ///
static inline bool classof(const Argument *) { return true; }
static inline bool classof(const Value *V) {
return V->getValueType() == ArgumentVal;