--- Additional Comments From hjl dot tools at gmail dot com 2008-08-18
18:01 ---
[EMAIL PROTECTED] set-5]$ cat f.s
.data
.globl x
.long x
x=y
y:
.long 1
z:
.long 1
x=z
[EMAIL PROTECTED] set-5]$ gcc -c f.s
[EMAIL PROTECTED] set-5]$ c
--
What|Removed |Added
OtherBugsDependingO||6848
nThis||
http://sourceware.org/bugzilla/show_bug.cgi?id=3469
--
--- Additional Comments From hjl dot tools at gmail dot com 2008-08-18
17:29 ---
This is caused by
http://sourceware.org/ml/binutils/2006-11/msg00065.html
--
What|Removed |Added
When ".set" is used to create the same symbol twice, we get
[EMAIL PROTECTED] tmp]$ cat t.s
.text
call bar
.section .text1,"ax"
.globl moo
moo:
ret
.globl bar
.set bar,moo
.text
call bar
.section .text1,"ax"
.g