LLVMBasicBlock.st
changeset 28 97013ae2abae
parent 22 789a35bd30ac
child 58 6b9f8fec013a
--- a/LLVMBasicBlock.st	Fri Aug 14 06:26:02 2015 +0100
+++ b/LLVMBasicBlock.st	Thu Aug 13 06:19:28 2015 +0100
@@ -44,11 +44,11 @@
 
 builder
     "Return a builder positioned at the end of the receiver"
-
+    
     | builder |
 
-    builder := LLVMBuilder new.
-    builder positionAtEnd: self.
+    builder := LLVMIRBuilder new.
+    builder positionAtEnd:self.
     ^ builder
 
     "Created: / 08-08-2015 / 03:25:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"