LLVMIRGenerator: remove debug print.

This commit is contained in:
whitequark 2015-08-27 15:40:15 -05:00
parent f7c8625f61
commit 71ebe1778d
1 changed files with 0 additions and 2 deletions

View File

@ -942,8 +942,6 @@ class LLVMIRGenerator:
llstackptr = self.llbuilder.call(self.llbuiltin("llvm.stacksave"), [])
llresultslot = self.llbuilder.alloca(llfun.type.pointee.args[0].pointee)
print(llfun)
print(llresultslot)
self.llbuilder.call(llfun, [llresultslot] + llargs)
llresult = self.llbuilder.load(llresultslot)