From: Chris Lattner Date: Sun, 21 Nov 2004 04:42:32 +0000 (+0000) Subject: Fix a warning X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b0f72a17d9a852d5fd2e67f36636d8536cd60cc5;p=oota-llvm.git Fix a warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18083 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetJITInfo.h b/include/llvm/Target/TargetJITInfo.h index 4c2e185164f..f126aaaf7a2 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