From 6388e3059deea795c21af1f7ebfdcfd000c8bf0a Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 19 Dec 2006 19:47:54 +0000 Subject: [PATCH] Fix an example that used the old SetCondInst instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32681 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Stacker.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Stacker.html b/docs/Stacker.html index a49b56de863..8bdf68ea6b0 100644 --- a/docs/Stacker.html +++ b/docs/Stacker.html @@ -229,7 +229,7 @@ in a single function using LLVM in the following way:

 using namespace llvm;
 BasicBlock*
-MyCompiler::handle_if( BasicBlock* bb, SetCondInst* condition )
+MyCompiler::handle_if( BasicBlock* bb, ICmpInst* condition )
 {
     // Create the blocks to contain code in the structure of if/then/else
     BasicBlock* then_bb = new BasicBlock(); 
-- 
2.34.1