Skip to content

Commit 5d8cd98

Browse files
committed
Test
1 parent 223a288 commit 5d8cd98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ static unsigned getEntrySizeForKind(SectionKind Kind) {
615615
/// DataSections.
616616
static StringRef getSectionPrefixForGlobal(SectionKind Kind, bool IsLarge) {
617617
if (Kind.isText())
618-
return IsLarge ? ".ltext" : ".text";
618+
return ".text";
619619
if (Kind.isReadOnly())
620620
return IsLarge ? ".lrodata" : ".rodata";
621621
if (Kind.isBSS())

0 commit comments

Comments
 (0)