MC/Mach-O: Explicitly track atoms, as represented by their defining symbol, for each...
[oota-llvm.git] / lib / MC / MCAssembler.cpp
index 69afcc8fb7e2b6f32ba15d54b0b7b17e7d36589d..5c2bf7879ac124a42d64e3d14c7e5a606721acef 100644 (file)
@@ -133,17 +133,13 @@ void MCAsmLayout::setSectionFileSize(MCSectionData *SD, uint64_t Value) {
   SD->FileSize = Value;
 }
 
-  /// @}
-
 /* *** */
 
 MCFragment::MCFragment() : Kind(FragmentType(~0)) {
 }
 
 MCFragment::MCFragment(FragmentType _Kind, MCSectionData *_Parent)
-  : Kind(_Kind),
-    Parent(_Parent),
-    EffectiveSize(~UINT64_C(0))
+  : Kind(_Kind), Parent(_Parent), Atom(0), EffectiveSize(~UINT64_C(0))
 {
   if (Parent)
     Parent->getFragmentList().push_back(this);