You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
304 B
20 lines
304 B
7 months ago
|
# This is a "bad" (absolute) instance of the symbol
|
||
|
multi = 1234
|
||
|
|
||
|
.text
|
||
|
.global shared
|
||
|
.type shared, @function
|
||
|
shared:
|
||
|
movq %rax, multi
|
||
|
ret
|
||
|
|
||
|
.section .text.comdat,"axG",@progbits,comdat,comdat
|
||
|
.weak comdat
|
||
|
comdat:
|
||
|
ret
|
||
|
|
||
|
.section .text.glob_or_wk,"ax",@progbits
|
||
|
.global glob_or_wk
|
||
|
glob_or_wk:
|
||
|
ret
|