[Bug gas/6848] Strange assembler error message on .set

2008-08-18 Thread hjl dot tools at gmail dot com
--- 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

[Bug gas/3469] GAS encodes corrupt relocation ld reports bad reloc symbol index

2008-08-18 Thread hjl dot tools at gmail dot com
-- What|Removed |Added OtherBugsDependingO||6848 nThis|| http://sourceware.org/bugzilla/show_bug.cgi?id=3469 --

[Bug gas/6848] Strange assembler error message on .set

2008-08-18 Thread hjl dot tools at gmail dot com
--- 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

[Bug gas/6848] New: Strange assembler error message on .set

2008-08-18 Thread hjl dot tools at gmail dot com
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