[llvm-commits] [llvm] r85505 - /llvm/trunk/lib/ExecutionEngine/JIT/JIT.h

Benjamin Kramer benny.kra at googlemail.com
Thu Oct 29 05:55:33 PDT 2009


Author: d0k
Date: Thu Oct 29 07:55:32 2009
New Revision: 85505

URL: http://llvm.org/viewvc/llvm-project?rev=85505&view=rev
Log:
Fix MSVC build.

Modified:
    llvm/trunk/lib/ExecutionEngine/JIT/JIT.h

Modified: llvm/trunk/lib/ExecutionEngine/JIT/JIT.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/JIT/JIT.h?rev=85505&r1=85504&r2=85505&view=diff

==============================================================================
--- llvm/trunk/lib/ExecutionEngine/JIT/JIT.h (original)
+++ llvm/trunk/lib/ExecutionEngine/JIT/JIT.h Thu Oct 29 07:55:32 2009
@@ -130,6 +130,7 @@
 
   void *getPointerToBasicBlock(BasicBlock *BB) {
     assert(0 && "JIT does not support address-of-label yet!");
+    return 0;
   }
   
   /// getOrEmitGlobalVariable - Return the address of the specified global





More information about the llvm-commits mailing list