forked from OSchip/llvm-project
apparently we have "windows" and "coff", which are different(?)
llvm-svn: 77197
This commit is contained in:
parent
c51f3394f3
commit
3679ad5a77
|
@ -191,6 +191,9 @@ X86ELFTargetAsmInfo::PreferredEHDataFormat(DwarfEncoding::Target Reason,
|
|||
X86COFFTargetAsmInfo::X86COFFTargetAsmInfo(const X86TargetMachine &TM):
|
||||
X86GenericTargetAsmInfo(TM) {
|
||||
|
||||
TextSection = getOrCreateSection("_text", true, SectionKind::Text);
|
||||
DataSection = getOrCreateSection("_data", true, SectionKind::DataRel);
|
||||
|
||||
GlobalPrefix = "_";
|
||||
LCOMMDirective = "\t.lcomm\t";
|
||||
COMMDirectiveTakesAlignment = false;
|
||||
|
|
Loading…
Reference in New Issue