@verbatim needs to be on a line by itself.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40865 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-08-06 17:10:29 +00:00
parent 914ce4508d
commit 7409cabc3e

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));
}