diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-07-12 02:53:33 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-07-12 02:53:33 +0000 |
commit | 44213c95387eb6f87501b7675380c837149fbb0c (patch) | |
tree | 95e6544a0302b7c75aa08495f003958a13e46ad1 /lib/CodeGen/ELFWriter.cpp | |
parent | 0e219eb9b8a2f6cb1128066584b06c6bd1b51238 (diff) |
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
Diffstat (limited to 'lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | lib/CodeGen/ELFWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 265adaba00..198e9cca5e 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! |