1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

ARM: Support SingleParameterDotFile on WoA

Currently, the integrated assembler is the only choice for assembling Windows on
ARM binaries.  IAS supports the .file <filename> directive which emits the file
symbol into the resulting object binary.  Mark the GNU COFF information to
indicate support for this feature.

llvm-svn: 207341
This commit is contained in:
Saleem Abdulrasool 2014-04-27 03:47:57 +00:00
parent 1b5573df25
commit fb4875b316

View File

@ -89,6 +89,7 @@ void ARMCOFFMCAsmInfoGNU::anchor() { }
ARMCOFFMCAsmInfoGNU::ARMCOFFMCAsmInfoGNU() { ARMCOFFMCAsmInfoGNU::ARMCOFFMCAsmInfoGNU() {
AlignmentIsInBytes = false; AlignmentIsInBytes = false;
HasSingleParameterDotFile = true;
CommentString = "@"; CommentString = "@";
Code16Directive = ".code\t16"; Code16Directive = ".code\t16";