From: Francois Pichet Date: Sat, 16 Apr 2011 13:59:23 +0000 (+0000) Subject: MSVC needs the return 0 to compile. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6144686af6b62480c1a72b9f648c3823c6ed0dba;p=oota-llvm.git MSVC needs the return 0 to compile. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129640 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/TargetLoweringObjectFile.cpp b/lib/Target/TargetLoweringObjectFile.cpp index 643a56b84f9..e0e6b6b0245 100644 --- a/lib/Target/TargetLoweringObjectFile.cpp +++ b/lib/Target/TargetLoweringObjectFile.cpp @@ -123,6 +123,7 @@ static bool IsNullTerminatedString(const Constant *C) { MCSymbol * TargetLoweringObjectFile::getPersonalityPICSymbol(StringRef Name) const { assert(0 && "Not Available in this format."); + return 0; } void TargetLoweringObjectFile::emitPersonalityValue(MCStreamer &Streamer,