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 | f530831f842047ccdabe4eddb11b23c9dcb9afd2 (patch) | |
| tree | 555aa271ca32ca476145e8dd6b14702fd6b7808e | |
| parent | d68ebaacc0542d558f879becbaa3acba7d916f7c (diff) | |
| download | bcm5719-llvm-f530831f842047ccdabe4eddb11b23c9dcb9afd2.tar.gz bcm5719-llvm-f530831f842047ccdabe4eddb11b23c9dcb9afd2.zip | |
Fix a warning
llvm-svn: 18083
| -rw-r--r-- | llvm/include/llvm/Target/TargetJITInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetJITInfo.h b/llvm/include/llvm/Target/TargetJITInfo.h index 4c2e185164f..f126aaaf7a2 100644 --- a/llvm/include/llvm/Target/TargetJITInfo.h +++ b/llvm/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 |

