apparently we have "windows" and "coff", which are different(?)

llvm-svn: 77197
This commit is contained in:
Chris Lattner 2009-07-27 16:22:39 +00:00
parent c51f3394f3
commit 3679ad5a77
1 changed files with 3 additions and 0 deletions

View File

@ -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;