diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-21 23:11:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-21 23:11:36 +0000 |
commit | 361ae1d28dfa4c22ddec58b2b742eb514f97c694 (patch) | |
tree | d5629d826ebc03e3371e712f1833948190614aa3 /include/llvm | |
parent | 4755e9955b62e2e422a16634045d106785e6e248 (diff) | |
download | external_llvm-361ae1d28dfa4c22ddec58b2b742eb514f97c694.zip external_llvm-361ae1d28dfa4c22ddec58b2b742eb514f97c694.tar.gz external_llvm-361ae1d28dfa4c22ddec58b2b742eb514f97c694.tar.bz2 |
Make MSVC happy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79689 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/MC/MCAssembler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h index 17de0b6..991283a 100644 --- a/include/llvm/MC/MCAssembler.h +++ b/include/llvm/MC/MCAssembler.h @@ -66,6 +66,7 @@ public: // FIXME: This should be abstract, fix sentinel. virtual uint64_t getMaxFileSize() const { assert(0 && "Invalid getMaxFileSize call !"); + return 0; }; /// @name Assembler Backend Support |