From: Daniel Dunbar Date: Fri, 30 Jul 2010 18:32:09 +0000 (+0000) Subject: MC: Initialize MCFragment::Offset, noticed by Cameron Esfahani. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0ecdb6f3d8af4bac2c18f90d369ad25cd9ef4f2d;p=oota-llvm.git MC: Initialize MCFragment::Offset, noticed by Cameron Esfahani. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109875 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCAssembler.cpp b/lib/MC/MCAssembler.cpp index b24c8cab930..2512a81cf4d 100644 --- a/lib/MC/MCAssembler.cpp +++ b/lib/MC/MCAssembler.cpp @@ -182,7 +182,8 @@ MCFragment::~MCFragment() { } MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent) - : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0)) + : Kind(_Kind), Parent(_Parent), Atom(0), Offset(~UINT64_C(0)), + EffectiveSize(~UINT64_C(0)) { if (Parent) Parent->getFragmentList().push_back(this);