diff options
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r-- | docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 4f21cc3c70..85d53dc251 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")); </pre> </ul> |