summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-05-07 21:47:39 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-05-07 21:47:39 +0000
commitadf5519a1c177781e2397afc2ba9085736c5b2a0 (patch)
treeed1c80d1176e2dda806e2dabafaf8e5bd7ba53bc
parentb4dd539eb73ef469654716f0cba0cdc0e9fedcc0 (diff)
downloadbcm5719-llvm-adf5519a1c177781e2397afc2ba9085736c5b2a0.tar.gz
bcm5719-llvm-adf5519a1c177781e2397afc2ba9085736c5b2a0.zip
Fixed syntax error (in documentation!): missing parenthesis.
llvm-svn: 6020
-rw-r--r--llvm/docs/ProgrammersManual.html2
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-&gt;getParent()-&gt;getInstList(), ii,
- new AllocaInst(Type::IntTy, 0, "ptrToReplacedInt");
+ new AllocaInst(Type::IntTy, 0, "ptrToReplacedInt"));
</pre>
</ul>
OpenPOWER on IntegriCloud