With fix for 2 bots. Details about the fix performed is on a review page.
Initial commit message:
This is PR30387:
From PR description:
We fail to parse
SECTIONS
{
foo :
{
*(sec0 EXCLUDE_FILE (zed1.o) sec1 EXCLUDE_FILE (zed2.o) sec2 )
}
}
The semantics according to bfd are:
Include sec1 from every file but zed1.o
Include sec2 from every file but zed2.o
Include sec0 from every file
Patch implements the support.
Differential revision: https://reviews.llvm.org/D24650
llvm-svn: 281754
9 lines
89 B
ArmAsm
9 lines
89 B
ArmAsm
.section .foo.1,"a"
|
|
.quad 4
|
|
|
|
.section .foo.2,"a"
|
|
.quad 5
|
|
|
|
.section .foo.3,"a"
|
|
.quad 6
|