diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2008-10-26 04:26:33 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2008-10-26 04:26:33 +0000 |
commit | 29a0da5f8e557235e789a7fcf7a4b109d906c34d (patch) | |
tree | 0a41d4078df36b24ff75078d84d351fcd9ecd861 | |
parent | 60de6c6c6383cfcb82149dd947eb7e7628d56837 (diff) | |
download | bcm5719-llvm-29a0da5f8e557235e789a7fcf7a4b109d906c34d.tar.gz bcm5719-llvm-29a0da5f8e557235e789a7fcf7a4b109d906c34d.zip |
Return something (i.e. NULL) from an unimplemented virtual function.
llvm-svn: 58183
-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 81e4c875723..142f0efbd3f 100644 --- a/llvm/include/llvm/Target/TargetJITInfo.h +++ b/llvm/include/llvm/Target/TargetJITInfo.h @@ -100,6 +100,7 @@ namespace llvm { /// meaningful to the target. virtual char* allocateThreadLocalMemory(size_t size) { assert(0 && "This target does not implement thread local storage!"); + return 0; } /// needsGOT - Allows a target to specify that it would like the |