aboutsummaryrefslogtreecommitdiff
path: root/modules/objfmts/elf/tests/curpos-err.asm
blob: d6f632c9c056f5e3c84cbdb3bec67feb4b38a587 (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
27
global bar
global foo

section .bar
bar:
dd foo-$
dd baz-$
call foo
call baz
foo:

section .data
baz:
dd foo-$
dd $-foo	; illegal
dd baz-$
dd $-baz
dd foo+4-$		; with constant
dd $-baz+foo+4-$	; both local and cross-segment (legal)
dd baz+foo+4-$-$	; ditto, slightly different
dd (bar-$)+(foo-$)	; illegal (too many cross-segment)
dd baz-$+baz-$		; two from same segment

section .text
mov dword [foo-$], 5
mov eax, foo-$
call foo