Skip to content

Commit 84428da

Browse files
committed
[MC] Fix compilation
1 parent 6859685 commit 84428da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/MC/MCContext.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ MCSymbol *MCContext::createBlockSymbol(const Twine &Name, bool AlwaysEmit) {
325325
bool IsTemporary = !SaveTempLabels;
326326
if (IsTemporary && !UseNamesOnTempLabels)
327327
return createSymbolImpl(nullptr, IsTemporary);
328-
return createRenamableSymbol(MAI->getPrivateLabelPrefix() << Name,
328+
return createRenamableSymbol(MAI->getPrivateLabelPrefix() + Name,
329329
/*AlwaysAddSuffix=*/false, IsTemporary);
330330
}
331331

0 commit comments

Comments
 (0)