test: nasm-t -- Add br3392252
[nasm.git] / test / ctxlocal.asm
blob93e9fcae4e2e504b69e9d2b9cccb6beb08edcc97
1 ;;
2 ;; Test of context-local labels
3 ;;
5 bits 64
6 extern everywhere ; Test of extern -> global promotion, too
7 extern tjosan
8 here:
9 jz .there
10 %push foo
11 jo %$mordor
12 hlt
13 %$mordor:
14 nop
15 %pop
16 .there:
17 ret
19 everywhere:
20 ret
22 global everywhere
24 tjosan:
25 ret