summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-10-01 10:25:05 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-10-01 10:25:05 +0200
commitf3cc34c256ed93e09541d1019e00e45012075920 (patch)
treeb723c5d0c97f2b4696725cb6fe159674fb5a30cf
parent08b09a4a194e26feeaacc3dfbb4637ea1f914708 (diff)
LLVM compiler: Fix %LOOP return value.
-rw-r--r--MLKLLVMCompiler.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/MLKLLVMCompiler.mm b/MLKLLVMCompiler.mm
index c62610d..137598e 100644
--- a/MLKLLVMCompiler.mm
+++ b/MLKLLVMCompiler.mm
@@ -474,7 +474,7 @@ static Constant
builder.CreateUnreachable ();
- return NULL;
+ return ConstantPointerNull::get (VoidPointerTy);;
}
@end