From: Saleem Abdulrasool Date: Sun, 27 Apr 2014 03:47:57 +0000 (+0000) Subject: ARM: Support SingleParameterDotFile on WoA X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2c2af2283290670bb30ea10a5ec1979f4a370051;p=oota-llvm.git ARM: Support SingleParameterDotFile on WoA Currently, the integrated assembler is the only choice for assembling Windows on ARM binaries. IAS supports the .file directive which emits the file symbol into the resulting object binary. Mark the GNU COFF information to indicate support for this feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207341 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp b/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp index e93b16c6b53..17fbf23e502 100644 --- a/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp +++ b/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp @@ -89,6 +89,7 @@ void ARMCOFFMCAsmInfoGNU::anchor() { } ARMCOFFMCAsmInfoGNU::ARMCOFFMCAsmInfoGNU() { AlignmentIsInBytes = false; + HasSingleParameterDotFile = true; CommentString = "@"; Code16Directive = ".code\t16";