From ac1cfa09d73923082ac7fd9bbd2c1f056bc02455 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Sun, 26 Oct 2008 04:26:33 +0000 Subject: [PATCH] Return something (i.e. NULL) from an unimplemented virtual function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58183 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Target/TargetJITInfo.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Target/TargetJITInfo.h b/include/llvm/Target/TargetJITInfo.h index 81e4c875723..142f0efbd3f 100644 --- a/include/llvm/Target/TargetJITInfo.h +++ b/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