diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-21 04:42:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-21 04:42:32 +0000 |
commit | b0f72a17d9a852d5fd2e67f36636d8536cd60cc5 (patch) | |
tree | d9ee28ce4a595632ba16f07ee2eee00b2ac279f8 | |
parent | 88f9386cfec85a90ce6a70cd3beb6281f691dfc3 (diff) | |
download | external_llvm-b0f72a17d9a852d5fd2e67f36636d8536cd60cc5.zip external_llvm-b0f72a17d9a852d5fd2e67f36636d8536cd60cc5.tar.gz external_llvm-b0f72a17d9a852d5fd2e67f36636d8536cd60cc5.tar.bz2 |
Fix a warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetJITInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetJITInfo.h b/include/llvm/Target/TargetJITInfo.h index 4c2e185..f126aaa 100644 --- a/include/llvm/Target/TargetJITInfo.h +++ b/include/llvm/Target/TargetJITInfo.h @@ -48,6 +48,7 @@ namespace llvm { /// address. Return the address of the resultant function. virtual void *emitFunctionStub(void *Fn, MachineCodeEmitter &MCE) { assert(0 && "This target doesn't implement emitFunctionStub!"); + return 0; } /// LazyResolverFn - This typedef is used to represent the function that |