From: Jim Grosbach Date: Thu, 31 Jan 2013 19:46:57 +0000 (+0000) Subject: Object: Fix errant fallthrough. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=133f6b8582f12ab4fdaee3b870d4bcb12d61ca9b;p=oota-llvm.git Object: Fix errant fallthrough. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174079 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Object/MachOObjectFile.cpp b/lib/Object/MachOObjectFile.cpp index 0ad88934005..a8536184b75 100644 --- a/lib/Object/MachOObjectFile.cpp +++ b/lib/Object/MachOObjectFile.cpp @@ -1076,6 +1076,7 @@ error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel, printRelocationTargetName(RENext, fmt); fmt << "-"; printRelocationTargetName(RE, fmt); + break; } case macho::RIT_X86_64_TLV: printRelocationTargetName(RE, fmt);