Add missing files.
[binutils.git] / ld / testsuite / ld-scripts / section-match-1.t
blob155b3dce6eb6ec15d1dae0c7e965b7aa80ccff27
1 SECTIONS
3         /* .secA should collect all sections with a prefix of ".sec."
4            except for those with a prefix of ".sec..".  */
5         .secA : { *(*.sec.[^.]*) }
7         /* .secB should be empty because .secA will have taken all of
8            the potential matches.  */   
9         .secB : { *(*.sec.[!.]*) }
11         /* .secC should match any sections with a ".sec.." prefix.  */
12         .secC : { *(*.sec.*) }
14         /* Ignore anything else.  */
15         /DISCARD/ : { *(*) }