aboutsummaryrefslogtreecommitdiffstats
path: root/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'unittests')
-rw-r--r--unittests/MC/AsmStreamerTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/unittests/MC/AsmStreamerTest.cpp b/unittests/MC/AsmStreamerTest.cpp
index 3bf05cb..815c9b0 100644
--- a/unittests/MC/AsmStreamerTest.cpp
+++ b/unittests/MC/AsmStreamerTest.cpp
@@ -46,14 +46,14 @@ TEST(AsmStreamer, EmptyOutput) {
TEST(AsmStreamer, Sections) {
StringAsmStreamer S;
- MCSection *Sec0 = MCSection::Create("foo", S.getContext());
+ MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
S.getStreamer().SwitchSection(Sec0);
EXPECT_EQ(".section foo\n", S.getString());
}
TEST(AsmStreamer, Values) {
StringAsmStreamer S;
- MCSection *Sec0 = MCSection::Create("foo", S.getContext());
+ MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
MCSymbol *A = S.getContext().CreateSymbol("a");
MCSymbol *B = S.getContext().CreateSymbol("b");
S.getStreamer().SwitchSection(Sec0);
@@ -74,7 +74,7 @@ b:\n\
TEST(AsmStreamer, Align) {
StringAsmStreamer S;
- MCSection *Sec0 = MCSection::Create("foo", S.getContext());
+ MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
S.getStreamer().SwitchSection(Sec0);
S.getStreamer().EmitValueToAlignment(4);
S.getStreamer().EmitValueToAlignment(4, /*Value=*/12, /*ValueSize=*/2);
@@ -88,7 +88,7 @@ TEST(AsmStreamer, Align) {
TEST(AsmStreamer, Org) {
StringAsmStreamer S;
- MCSection *Sec0 = MCSection::Create("foo", S.getContext());
+ MCSection *Sec0 = MCSection::Create("foo", SectionKind(), S.getContext());
S.getStreamer().SwitchSection(Sec0);
MCSymbol *A = S.getContext().CreateSymbol("a");
S.getStreamer().EmitLabel(A);