[llvm-commits] [llvm] r40865 - /llvm/trunk/include/llvm/Support/LLVMBuilder.h
Reid Spencer
rspencer at reidspencer.com
Mon Aug 6 10:10:30 PDT 2007
Author: reid
Date: Mon Aug 6 12:10:29 2007
New Revision: 40865
URL: http://llvm.org/viewvc/llvm-project?rev=40865&view=rev
Log:
@verbatim needs to be on a line by itself.
Modified:
llvm/trunk/include/llvm/Support/LLVMBuilder.h
Modified: llvm/trunk/include/llvm/Support/LLVMBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/LLVMBuilder.h?rev=40865&r1=40864&r2=40865&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/LLVMBuilder.h (original)
+++ llvm/trunk/include/llvm/Support/LLVMBuilder.h Mon Aug 6 12:10:29 2007
@@ -89,7 +89,9 @@
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));
}
More information about the llvm-commits
mailing list