Make SectionKind::get() private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77835 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Alpha/AlphaISelLowering.cpp b/lib/Target/Alpha/AlphaISelLowering.cpp
index 73fab21..a17209e 100644
--- a/lib/Target/Alpha/AlphaISelLowering.cpp
+++ b/lib/Target/Alpha/AlphaISelLowering.cpp
@@ -37,11 +37,11 @@
void Initialize(MCContext &Ctx, const TargetMachine &TM) {
TargetLoweringObjectFile::Initialize(Ctx, TM);
TextSection = getOrCreateSection("_text", true,
- SectionKind::get(SectionKind::Text));
+ SectionKind::getText());
DataSection = getOrCreateSection("_data", true,
- SectionKind::get(SectionKind::DataRel));
+ SectionKind::getDataRel());
ReadOnlySection = getOrCreateSection("_rodata", true,
- SectionKind::get(SectionKind::ReadOnly));
+ SectionKind::getReadOnly());
}
};
}