diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-29 12:55:32 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-29 12:55:32 +0000 |
commit | 5e1db97573de24836c58be67e6b33eaf23492fac (patch) | |
tree | 59394430cfc7797e9af801c7a9cf32b743969bfe /llvm/lib/ExecutionEngine/JIT/JIT.h | |
parent | 09bd8656c308b6ca1e66f6b6eeaa2675fc548984 (diff) | |
download | bcm5719-llvm-5e1db97573de24836c58be67e6b33eaf23492fac.tar.gz bcm5719-llvm-5e1db97573de24836c58be67e6b33eaf23492fac.zip |
Fix MSVC build.
llvm-svn: 85505
Diffstat (limited to 'llvm/lib/ExecutionEngine/JIT/JIT.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.h b/llvm/lib/ExecutionEngine/JIT/JIT.h index a5b728a1c53..fb3cb24333f 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.h +++ b/llvm/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 |