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 | 33b8232ce0de33908cd92f42c99b11f7a40f61de (patch) | |
tree | 1b9ac89ae0ae745d0b8111bbaccce1833cf1d9cd /llvm/lib/CodeGen/ELFWriter.cpp | |
parent | df8946dedeeffe6baebf328f8ada24bf95d6fd99 (diff) | |
download | bcm5719-llvm-33b8232ce0de33908cd92f42c99b11f7a40f61de.tar.gz bcm5719-llvm-33b8232ce0de33908cd92f42c99b11f7a40f61de.zip |
VC++ demands that the function returns a value
llvm-svn: 22393
Diffstat (limited to 'llvm/lib/CodeGen/ELFWriter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ELFWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.cpp b/llvm/lib/CodeGen/ELFWriter.cpp index 265adaba00a..198e9cca5e7 100644 --- a/llvm/lib/CodeGen/ELFWriter.cpp +++ b/llvm/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! |