diff options
Diffstat (limited to 'test/ELF/Inputs/map-file5.s')
-rw-r--r-- | test/ELF/Inputs/map-file5.s | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/ELF/Inputs/map-file5.s b/test/ELF/Inputs/map-file5.s new file mode 100644 index 0000000000000..2a89b4c7f6f5a --- /dev/null +++ b/test/ELF/Inputs/map-file5.s @@ -0,0 +1,23 @@ +.bss +.type sharedFoo,@object +.globl sharedFoo +sharedFoo: +.long 0 +.size sharedFoo, 4 + +.type sharedBar,@object +.globl sharedBar +sharedBar: +.quad 0 +.size sharedBar, 8 + +.text +.globl sharedFunc1 +.type sharedFunc1,@function +sharedFunc1: + nop + +.globl sharedFunc2 +.type sharedFunc2,@function +sharedFunc2: + nop |