[llvm-commits] CVS: llvm/docs/Stacker.html

Chris Lattner lattner at cs.uiuc.edu
Mon Nov 24 19:45:02 PST 2003


Changes in directory llvm/docs:

Stacker.html updated: 1.3 -> 1.4

---
Log message:

Minor fixes


---
Diffs of the changes:  (+7 -7)

Index: llvm/docs/Stacker.html
diff -u llvm/docs/Stacker.html:1.3 llvm/docs/Stacker.html:1.4
--- llvm/docs/Stacker.html:1.3	Mon Nov 24 19:35:06 2003
+++ llvm/docs/Stacker.html	Mon Nov 24 19:44:27 2003
@@ -141,15 +141,15 @@
     Instruction* tail = bb->getTerminator();
     ConstantSInt* one = ConstantSInt::get( Type::IntTy, 1);
     BinaryOperator* or1 = 
-	new BinaryOperator::create( Instruction::Or, a, b, "", tail );
+	BinaryOperator::create( Instruction::Or, a, b, "", tail );
     BinaryOperator* add1 = 
-	new BinaryOperator::create( Instruction::Add, x, one, "", tail );
+	BinaryOperator::create( Instruction::Add, x, one, "", tail );
     BinaryOperator* add2 =
-	new BinaryOperator::create( Instruction::Add, y, one, "", tail );
+	BinaryOperator::create( Instruction::Add, y, one, "", tail );
     BinaryOperator* div1 = 
-	new BinaryOperator::create( Instruction::Div, add1, add2, "", tail);
+	BinaryOperator::create( Instruction::Div, add1, add2, "", tail);
     BinaryOperator* mult1 = 
-	new BinaryOperator::create( Instruction::Mul, or1, div1, "", tail );
+	BinaryOperator::create( Instruction::Mul, or1, div1, "", tail );
 
     return mult1;
 }
@@ -271,7 +271,7 @@
 the <code>BasicBlock</code> provided as an argument. To give the caller a way
 to keep inserting after calling <code>handle_if</code> we create an "exit" block
 which is returned to the caller.  Note that the "exit" block is used as the 
-terminator for both the "then" and the "else" blocks. This gaurantees that no
+terminator for both the "then" and the "else" blocks. This guarantees that no
 matter what else "handle_if" or "fill_in" does, they end up at the "exit" block.
 </p>
 </div>
@@ -1346,6 +1346,6 @@
 <div class="doc_footer">
 <address><a href="mailto:rspencer at x10sys.com">Reid Spencer</a></address>
 <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a> 
-<br>Last modified: $Date: 2003/11/25 01:35:06 $ </div>
+<br>Last modified: $Date: 2003/11/25 01:44:27 $ </div>
 </body>
 </html>





More information about the llvm-commits mailing list