From: Misha Brukman Date: Wed, 7 May 2003 21:47:39 +0000 (+0000) Subject: Fixed syntax error (in documentation!): missing parenthesis. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e7a7ab48f3cb5677f14962c9006afd80cf2475cc;p=oota-llvm.git Fixed syntax error (in documentation!): missing parenthesis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6020 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 4f21cc3c70f..85d53dc2519 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -900,7 +900,7 @@ instruction. The following example illustrates the replacement of one AllocaInst* instToReplace = ...; BasicBlock::iterator ii(instToReplace); ReplaceInstWithInst(instToReplace->getParent()->getInstList(), ii, - new AllocaInst(Type::IntTy, 0, "ptrToReplacedInt"); + new AllocaInst(Type::IntTy, 0, "ptrToReplacedInt"));