From: Kevin Enderby Date: Fri, 16 Jan 2015 00:27:31 +0000 (+0000) Subject: This should fix the build bot clang-cmake-armv7-a15-full failing on X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5d80532925d33eaef925945471c2bb61e14e26f2;p=oota-llvm.git This should fix the build bot clang-cmake-armv7-a15-full failing on the macho-archive-headers.test added with r226228. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226232 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Object/Archive.cpp b/lib/Object/Archive.cpp index ba35e49faa6..f14b29e1622 100644 --- a/lib/Object/Archive.cpp +++ b/lib/Object/Archive.cpp @@ -111,8 +111,6 @@ uint64_t Archive::Child::getSize() const { } uint64_t Archive::Child::getRawSize() const { - if (Parent->IsThin) - return getHeader()->getSize(); return Data.size(); }