diff options
Diffstat (limited to 'binutils-2.22/ld/testsuite/ld-elf/foo0.s')
-rw-r--r-- | binutils-2.22/ld/testsuite/ld-elf/foo0.s | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/binutils-2.22/ld/testsuite/ld-elf/foo0.s b/binutils-2.22/ld/testsuite/ld-elf/foo0.s new file mode 100644 index 0000000..df71662 --- /dev/null +++ b/binutils-2.22/ld/testsuite/ld-elf/foo0.s @@ -0,0 +1,16 @@ + .text + .global start /* Used by SH targets. */ +start: + .global _start +_start: + .global __start +__start: + .global main /* Used by HPPA targets. */ +main: + .dc.a 0 + + .section .foo,"ax",%progbits + .p2align 2 +.globl foo + .type foo,%function +foo: |