From: Jeff Cohen Date: Tue, 12 Jul 2005 02:53:33 +0000 (+0000) Subject: VC++ demands that the function returns a value X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=44213c95387eb6f87501b7675380c837149fbb0c;p=oota-llvm.git VC++ demands that the function returns a value git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22393 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 265adaba00a..198e9cca5e7 100644 --- a/lib/CodeGen/ELFWriter.cpp +++ b/lib/CodeGen/ELFWriter.cpp @@ -81,6 +81,7 @@ namespace llvm { } virtual uint64_t getConstantPoolEntryAddress(unsigned Index) { assert(0 && "CP not implementated yet!"); + return 0; } /// JIT SPECIFIC FUNCTIONS - DO NOT IMPLEMENT THESE HERE!