diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-27 03:47:57 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-04-27 03:47:57 +0000 |
commit | 6d6fee9cbcbbc90e3e76c96068b0e6555040531c (patch) | |
tree | 9b702a5cfc19d3c6ecb12a570c74d3352dfcb33b /llvm/lib | |
parent | 7c301b4b86f6ee7907cacfde089bb85031f6c3f9 (diff) | |
download | bcm5719-llvm-6d6fee9cbcbbc90e3e76c96068b0e6555040531c.tar.gz bcm5719-llvm-6d6fee9cbcbbc90e3e76c96068b0e6555040531c.zip |
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
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp index e93b16c6b53..17fbf23e502 100644 --- a/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp +++ b/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp @@ -89,6 +89,7 @@ void ARMCOFFMCAsmInfoGNU::anchor() { } ARMCOFFMCAsmInfoGNU::ARMCOFFMCAsmInfoGNU() { AlignmentIsInBytes = false; + HasSingleParameterDotFile = true; CommentString = "@"; Code16Directive = ".code\t16"; |