1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Generate section for bss and enable weak symbols

llvm-svn: 80121
This commit is contained in:
Venkatraman Govindaraju 2009-08-26 18:24:12 +00:00
parent c7d92cfb15
commit 80722d1ee4

View File

@ -24,6 +24,12 @@ SparcELFMCAsmInfo::SparcELFMCAsmInfo(const Target &T, const StringRef &TT) {
COMMDirectiveTakesAlignment = true;
SunStyleELFSectionSwitchSyntax = true;
UsesELFSectionDirectiveForBSS = true;
WeakRefDirective = "\t.weak\t";
SetDirective = "\t.set\t";
PrivateGlobalPrefix = ".L";
}