Skip to content

Commit 418938e

Browse files
author
Zaara Syeda
committed
Format code
1 parent 7e29627 commit 418938e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2424,7 +2424,8 @@ MCSection *TargetLoweringObjectFileXCOFF::SelectSectionForGlobal(
24242424
if (GVar->hasAttribute("toc-data")) {
24252425
SmallString<128> Name;
24262426
getNameWithPrefix(Name, GO, TM);
2427-
XCOFF::SymbolType symType = GO->hasCommonLinkage() ? XCOFF::XTY_CM : XCOFF::XTY_SD;
2427+
XCOFF::SymbolType symType =
2428+
GO->hasCommonLinkage() ? XCOFF::XTY_CM : XCOFF::XTY_SD;
24282429
return getContext().getXCOFFSection(
24292430
Name, Kind, XCOFF::CsectProperties(XCOFF::XMC_TD, symType),
24302431
/* MultiSymbolsAllowed*/ true);

0 commit comments

Comments
 (0)