mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Drop winmcasminfo and use normal AT&T COFF for all windows targets.
Otherwise AT&T asm printer is used with non-compatible MCAsmInfo and there is no way to override this behaviour. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96165 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2faf3919d4
commit
245ba9698e
@ -94,27 +94,4 @@ MCSection *X86ELFMCAsmInfo::getNonexecutableStackSection(MCContext &Ctx) const {
|
||||
X86MCAsmInfoCOFF::X86MCAsmInfoCOFF(const Triple &Triple) {
|
||||
AsmTransCBE = x86_asm_table;
|
||||
AssemblerDialect = AsmWriterFlavor;
|
||||
}
|
||||
|
||||
|
||||
X86WinMCAsmInfo::X86WinMCAsmInfo(const Triple &Triple) {
|
||||
AsmTransCBE = x86_asm_table;
|
||||
AssemblerDialect = AsmWriterFlavor;
|
||||
|
||||
GlobalPrefix = "_";
|
||||
CommentString = ";";
|
||||
|
||||
PrivateGlobalPrefix = "$";
|
||||
AlignDirective = "\tALIGN\t";
|
||||
ZeroDirective = "\tdb\t";
|
||||
AsciiDirective = "\tdb\t";
|
||||
AscizDirective = 0;
|
||||
Data8bitsDirective = "\tdb\t";
|
||||
Data16bitsDirective = "\tdw\t";
|
||||
Data32bitsDirective = "\tdd\t";
|
||||
Data64bitsDirective = "\tdq\t";
|
||||
HasDotTypeDotSizeDirective = false;
|
||||
HasSingleParameterDotFile = false;
|
||||
|
||||
AlignmentIsInBytes = true;
|
||||
}
|
||||
}
|
@ -30,9 +30,8 @@ static const MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
|
||||
case Triple::MinGW32:
|
||||
case Triple::MinGW64:
|
||||
case Triple::Cygwin:
|
||||
return new X86MCAsmInfoCOFF(TheTriple);
|
||||
case Triple::Win32:
|
||||
return new X86WinMCAsmInfo(TheTriple);
|
||||
return new X86MCAsmInfoCOFF(TheTriple);
|
||||
default:
|
||||
return new X86ELFMCAsmInfo(TheTriple);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user