Use a bitfield. NFC.

llvm-svn: 238705
This commit is contained in:
Rafael Espindola
2015-06-01 01:05:07 +00:00
parent 09d3ecc60d
commit a66395e184
2 changed files with 3 additions and 2 deletions

View File

@@ -20,7 +20,8 @@ using namespace llvm;
//===----------------------------------------------------------------------===//
MCSection::MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin)
: Begin(Begin), HasInstructions(false), Variant(V), Kind(K) {}
: Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false),
Variant(V), Kind(K) {}
MCSymbol *MCSection::getEndSymbol(MCContext &Ctx) {
if (!End)