]> granicus.if.org Git - llvm/commit
Merging r195148:
authorBill Wendling <isanbard@gmail.com>
Wed, 27 Nov 2013 06:44:18 +0000 (06:44 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 27 Nov 2013 06:44:18 +0000 (06:44 +0000)
commit0ae07098f7d2ad5a1868d448d0b1b4eef2a3b091
treee8e00fbae3c35abdbcfe8f7aacd1df44a0fe00b7
parentb1df5b013a38ab7381630af8b3142c56f604d85b
Merging r195148:
------------------------------------------------------------------------
r195148 | rafael | 2013-11-19 11:52:52 -0800 (Tue, 19 Nov 2013) | 15 lines

Support multiple COFF sections with the same name but different COMDAT.

This is the first step to fix pr17918.

It extends the .section directive a bit, inspired by what the ELF one looks
like. The problem with using linkonce is that given

.section foo
.linkonce....

.section foo
.linkonce

we would already have switched sections when getting to .linkonce. The cleanest
solution seems to be to add the comdat information in the .section itself.
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195822 91177308-0d34-0410-b5e6-96231b3b80d8
docs/Extensions.rst
include/llvm/MC/MCContext.h
include/llvm/MC/MCSectionCOFF.h
lib/CodeGen/TargetLoweringObjectFileImpl.cpp
lib/MC/MCContext.cpp
lib/MC/MCParser/COFFAsmParser.cpp
lib/MC/WinCOFFStreamer.cpp
test/MC/COFF/section-comdat.s [new file with mode: 0644]