diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-07 21:47:39 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-05-07 21:47:39 +0000 |
commit | adf5519a1c177781e2397afc2ba9085736c5b2a0 (patch) | |
tree | ed1c80d1176e2dda806e2dabafaf8e5bd7ba53bc | |
parent | b4dd539eb73ef469654716f0cba0cdc0e9fedcc0 (diff) | |
download | bcm5719-llvm-adf5519a1c177781e2397afc2ba9085736c5b2a0.tar.gz bcm5719-llvm-adf5519a1c177781e2397afc2ba9085736c5b2a0.zip |
Fixed syntax error (in documentation!): missing parenthesis.
llvm-svn: 6020
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 4f21cc3c70f..85d53dc2519 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/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> |