File: x.s

package info (click to toggle)
binutils-djgpp 2.35.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 321,256 kB
  • sloc: ansic: 1,162,947; asm: 671,219; cpp: 134,012; exp: 70,783; makefile: 55,860; sh: 22,254; yacc: 14,459; lisp: 13,806; perl: 2,008; lex: 1,649; pascal: 307; sed: 195; awk: 25
file content (29 lines) | stat: -rw-r--r-- 731 bytes parent folder | download | duplicates (29)
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
27
28
29
;# 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.  An exception-table-lookalike entry
;# refers to fn via a local label.  We use .gcc_except_table as we
;# can't be bothered to produce syntactically valid .eh_frame contents
;# and there's no option to turn off warning messages for invalid
;# contents.

 .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 .gcc_except_table,"aw",@progbits
 .long 2
 .long L:a
 .long L:b-L:a