summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-mmix/x.s
blob: faf4073d42f0c3753dded79c0f5e279568f256a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
;# Main file, x.s, with the program (_start) referring to two
;# linkonce functions fn and fn2.  The functions fn and fn2 are
;# supposed to be equivalent of C++ template instantiations; the
;# main file instantiates fn.  There's the equivalent of an FDE
;# entry in .eh_frame, referring to fn via a local label.

 .text
 .global _start
_start:
 .long fn
 .long fn2

 .section .gnu.linkonce.t.fn,"ax",@progbits
 .weak fn
 .type fn,@function
fn:
L:a:
 .long 1
 .long 2
L:b:
 .size fn,L:b-L:a

 .section .eh_frame,"aw",@progbits
 .long 2
 .long L:a
 .long L:b-L:a