forked from OSchip/llvm-project
darwin doesn't support .bss, but it does have .zerofill
llvm-svn: 33303
This commit is contained in:
parent
1ceb643f31
commit
88b45f9a2c
|
@ -47,6 +47,8 @@ X86TargetAsmInfo::X86TargetAsmInfo(const X86TargetMachine &TM) {
|
|||
Data64bitsDirective = 0; // we can't emit a 64-bit unit
|
||||
ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
|
||||
PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
|
||||
BSSSection = 0; // no BSS section.
|
||||
ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
|
||||
ConstantPoolSection = "\t.const\n";
|
||||
JumpTableDataSection = "\t.const\n";
|
||||
CStringSection = "\t.cstring";
|
||||
|
|
Loading…
Reference in New Issue