diff options
Diffstat (limited to 'ld/testsuite/ld-elf/export-class-dep.s')
-rw-r--r-- | ld/testsuite/ld-elf/export-class-dep.s | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ld/testsuite/ld-elf/export-class-dep.s b/ld/testsuite/ld-elf/export-class-dep.s new file mode 100644 index 0000000..e987898 --- /dev/null +++ b/ld/testsuite/ld-elf/export-class-dep.s @@ -0,0 +1,25 @@ + .data + .balign 16 + .dc.a protected_foo + .balign 16 + .dc.a protected_bar + .balign 16 + .dc.a hidden_foo + .balign 16 + .dc.a hidden_bar + .balign 16 + .dc.a internal_foo + .balign 16 + .dc.a internal_bar + .balign 32 + .xdef protected_baz + .protected protected_baz +protected_baz: + .balign 32 + .xdef hidden_baz + .hidden hidden_baz +hidden_baz: + .balign 32 + .xdef internal_baz + .internal internal_baz +internal_baz: |