[llvm-commits] CVS: llvm/www/docs/ProgrammersManual.html
Michael Brukman
brukman at cs.uiuc.edu
Wed May 7 16:48:02 PDT 2003
Changes in directory llvm/www/docs:
ProgrammersManual.html updated: 1.39 -> 1.40
---
Log message:
Fixed syntax error (in documentation!): missing parenthesis.
---
Diffs of the changes:
Index: llvm/www/docs/ProgrammersManual.html
diff -u llvm/www/docs/ProgrammersManual.html:1.39 llvm/www/docs/ProgrammersManual.html:1.40
--- llvm/www/docs/ProgrammersManual.html:1.39 Wed Apr 23 11:26:15 2003
+++ llvm/www/docs/ProgrammersManual.html Wed May 7 16:47:39 2003
@@ -900,7 +900,7 @@
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>
More information about the llvm-commits
mailing list