From 0507d8373a074c77f524b435cdf076accd65394a Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Thu, 29 Oct 2009 12:55:32 +0000 Subject: [PATCH] Fix MSVC build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85505 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/JIT/JIT.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ExecutionEngine/JIT/JIT.h b/lib/ExecutionEngine/JIT/JIT.h index a5b728a1c53..fb3cb24333f 100644 --- a/lib/ExecutionEngine/JIT/JIT.h +++ b/lib/ExecutionEngine/JIT/JIT.h @@ -130,6 +130,7 @@ public: void *getPointerToBasicBlock(BasicBlock *BB) { assert(0 && "JIT does not support address-of-label yet!"); + return 0; } /// getOrEmitGlobalVariable - Return the address of the specified global