@verbatim needs to be on a line by itself.

llvm-svn: 40865
This commit is contained in:
Reid Spencer 2007-08-06 17:10:29 +00:00
parent 079ebcfae5
commit 7fffcad5c2
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ public:
return Insert(new ReturnInst());
}
/// @verbatim CreateRet - Create a 'ret <val>' instruction. @endverbatim
/// @verbatim
/// CreateRet - Create a 'ret <val>' instruction.
/// @endverbatim
ReturnInst *CreateRet(Value *V) {
return Insert(new ReturnInst(V));
}