[Bug ld/11812] Unused .got.plt section generated by linker

2010-09-23 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2010-09-23 
13:46 ---
Of course not, but no other version of binutils omits the GOT section entirely
for a shared library.

Having the _G_O_T_ symbol point to something that is not a GOT is bogus.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11812

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/11812] Unused .got.plt section generated by linker

2010-09-23 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2010-09-23 
23:38 ---
Subject: Re:  Unused .got.plt section generated by linker

On Thu, Sep 23, 2010 at 11:05:33PM -, hjl dot tools at gmail dot com wrote:
 Please provide a complete testcase so that I can debug it.

That was a complete test case.  The application is not GPL;
I am not going to provide it for you.

Is there any reason the patch is required?  Since it breaks something,
and fixes nothing that I can tell, it should be reverted.


--- Additional Comments From drow at sources dot redhat dot com  2010-09-23 
23:40 ---
Sorry, I forgot the command line.

gcc -m64 -o test test.S -shared -nostdlib -Wl,-e,_start


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11812

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/11812] Unused .got.plt section generated by linker

2010-09-22 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2010-09-23 
00:37 ---
Here's a minimal version that demonstrates the wrong value.

.text
.globl _start
_start:
leaq _DYNAMIC(%rip), %rsi
movq _GLOBAL_OFFSET_TABLE_(%rip), %rcx
subq %rcx, %rsi
.globl breakpoint
breakpoint:
movq $60, %rax
movq %rsi, %rdi
andq $63, %rdi
syscall
.size _start,.-_start

The exit code should be zero (load address 64-byte aligned).  But actually I get
9.  You might get zero, but check %rsi at *breakpoint.


-- 
   What|Removed |Added

 CC||drow at sources dot redhat
   ||dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=11812

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug gas/11323] Need representation of the offset from a label to a GOT entry

2010-03-05 Thread drow at sources dot redhat dot com

--- Additional Comments From nickc at redhat dot com  2010-03-05 12:24 
---
Subject: Re:  Need representation of the offset from a label
 to a   GOT entry

Hi Niki,

 Since this relocation needs 2 parameters, it is difficult to represent as the
 normal relocation specification var(relocation_type). I propose the 
 following
 syntax, which is similar to the syntax used to represent GOT table's 
 relocation.

   .word   var(GOTABS)-(.LPIC0+4)

I think that it would be clearer if the entire expression was enclosed 
inside a single set of parentheses.  Ie:

.word var(GOTABS-.LPIC0+4)

Allowing white space would make it easier to read as well:

.word var(GOTABS - .LPIC0 + 4)

Cheers
   Nick

--- Additional Comments From drow at sources dot redhat dot com  2010-03-05 
20:14 ---
I disagree; var(GOTABS) is nicely parallel with var(GOT).  It's even a sensible
relocation, although I don't think there's an assigned relocation number for it
(without the PREL part).


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11323

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/10924] Bug in objdump when disassembling raw armv4t binaries

2009-12-10 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2009-12-10 
23:12 ---
Subject: Re:  Bug in objdump when disassembling raw
 armv4t binaries

On Thu, Dec 10, 2009 at 10:47:41PM -, chris at seberino dot org wrote:
 I can't see why 0x004000bf is marked UNPREDICTABLE.  I think that is 
 incorrect...
 
0:004000bf   strheq  r0, [r0], #-15  ; UNPREDICTABLE
 
 Agreed?

Writeback is set, and rN == rT.  From my copy of the docs, that's
unpredictable.



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10924

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/10924] Bug in objdump when disassembling raw armv4t binaries

2009-12-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2009-12-08 
19:49 ---
Subject: Re:  Bug in objdump when disassembling raw
 armv4t binaries

On Tue, Dec 08, 2009 at 05:30:21PM -, nickc at redhat dot com wrote:
 Mine is ARM DDI 0100E.  I would not mind having a copy of 0100I PDF, but what 
 I
 would really like is a copy of the latest ARM ISA specification.  But that is
 only available to registered ARM customers. :-(

FYI, it's still registration-required, but you don't have to be a
customer to get it; just register with their web portal.

I've found I have to be a little careful with the current (DDI0406B)
specification, as it sometimes is ARMv6/ARMv7-centric; to find out
ways that ARMv5 is different you sometimes have to go back to DDI0100I.



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10924

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/10924] Bug in objdump when disassembling raw armv4t binaries

2009-11-18 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2009-11-18 
16:14 ---
Hi Nick,

Thoms Schwinge noticed a failure in group-relocations.d:

regexp_diff match failure
regexp ^8074:  e1c020d0ldrdr2, \[r0\]$
line   8074:   e1c020d0ldrdr2, [r0, #0]

Is this change really needed?  I think Chris's point was that we have to print
[r0, #-0] which is a separate instruction from [r0, #0].


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10924

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/10767] opcodes/i386-dis.c exceeds 256 levels of nested macros

2009-10-13 Thread drow at sources dot redhat dot com


-- 
   What|Removed |Added

 AssignedTo|drow at sources dot redhat  |unassigned at sources dot
   |dot com |redhat dot com
 Status|NEW |ASSIGNED


http://sourceware.org/bugzilla/show_bug.cgi?id=10767

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug gas/6717] New: gas incorrectly associates .loc with instructions

2008-07-02 Thread drow at sources dot redhat dot com
Gas only emits .loc into .debug_line at the next following instruction.  One
peculiar consequence of this drives me nuts when writing test cases: if I use
.loc followed by .byte, nothing is generated.

A more interesting consequence is this one:

.file 1 line-align.s
.text
.globl sym
.p2align 3
sym:.loc 1 40 0
nop
label:
.loc 1 41 0
.p2align 3
nop
.loc 1 42 0
nop

gas will give label address 0x1, but put line 41 starting at address 8.  The
nop inserted for .p2align is incorrectly associated with the previous line.  In
my original testcase, label was LBB31; a label used by GCC for debug info.  So
GCC's .debug_info says an inlined function begins at label, but the line table
lists the line before the start of the inlined function.

-- 
   Summary: gas incorrectly associates .loc with instructions
   Product: binutils
   Version: 2.19 (HEAD)
Status: NEW
  Severity: normal
  Priority: P2
 Component: gas
AssignedTo: unassigned at sources dot redhat dot com
ReportedBy: drow at sources dot redhat dot com
CC: bug-binutils at gnu dot org
  GCC host triplet: x86_64-pc-linux-gnu


http://sourceware.org/bugzilla/show_bug.cgi?id=6717

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6446] Handling of EF_FRV_PIC

2008-05-30 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-05-30 
16:03 ---
Subject: Re:  Handling of EF_FRV_PIC

On Wed, May 21, 2008 at 10:34:13AM -, nickc at redhat dot com wrote:
 I have uploaded a patch to this PR which I think might correct the 
 linker's behaviour, but I am not familiar with FDPIC on the FRV so I may 
 well have made a mistake.  Would you guys care to take a look at it ?

I think it looks right, but I am not familiar with FRV at all; I only
noticed this while working on SH.

Could the flag go in the link info instead of static, on general principles?



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6446

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6519] __start_SECNAME undocumented

2008-05-21 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-05-21 
12:07 ---
I didn't realize this was only done for orphaned sections.  I suppose it's
harder to do for things mentioned in the linker script, and there's an obvious
way to do it manually - in keeping with the verbose and precise nature of GNU
linker scripts.  I've been tossing around ideas for a less verbose format,
possibly for gold which already works well without one...

Meanwhile, for this bug.  I'm not sure about editing the NEWS entry since the
current behavior may be more recent than 2.6.  But the manual change looks
perfect to me.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6519

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6519] __start_SECNAME undocumented

2008-05-21 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-05-21 
12:23 ---
Subject: Re:  __start_SECNAME undocumented

On Wed, May 21, 2008 at 12:10:51PM -, nickc at redhat dot com wrote:
 Tell you what - I'll check in the change to the manual as-is and add an 
 addendum to the NEWS entry describing how the feature is now 
 implemented, in case other people read that far back in the NEWS file.

Sounds good.  Thank you!



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=6519

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/6526] Building for interix 3.5 requires _ALL_SOURCE defined

2008-05-16 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-05-16 
16:38 ---
What was the resolution of the autoconf discussion?

-- 
   What|Removed |Added

 AssignedTo|drow at sources dot redhat  |unassigned at sources dot
   |dot com |redhat dot com
   Severity|critical|normal
  Component|admin   |binutils


http://sourceware.org/bugzilla/show_bug.cgi?id=6526

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6519] New: __start_SECNAME undocumented

2008-05-14 Thread drow at sources dot redhat dot com
NEWS says (since 2.6):

* When an ELF section name is representable as a C identifier (this is not true
of most ELF section names), the linker will automatically define symbols
__start_SECNAME and __stop_SECNAME, where SECNAME is the section name, at the
beginning and the end of the section.  This is used by glibc.

But there's nothing about this in the ld manual.

-- 
   Summary: __start_SECNAME undocumented
   Product: binutils
   Version: 2.19 (HEAD)
Status: NEW
  Severity: normal
  Priority: P2
 Component: ld
AssignedTo: unassigned at sources dot redhat dot com
ReportedBy: drow at sources dot redhat dot com
CC: bug-binutils at gnu dot org


http://sourceware.org/bugzilla/show_bug.cgi?id=6519

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6446] New: Handling of EF_FRV_PIC

2008-04-22 Thread drow at sources dot redhat dot com
Another bug found by inspection.  The ABI says:

The linker should warn and clear EF_FRV_PIC when linking
FDPIC binaries if it finds any inter-segment relocation, and set it
otherwise.

But in fact the linker sets EF_FRV_PIC if it sees any inter-segment relocations.
 There's hardcoded checks for files named crt0.o directly above that, too.

-- 
   Summary: Handling of EF_FRV_PIC
   Product: binutils
   Version: 2.19 (HEAD)
Status: NEW
  Severity: normal
  Priority: P2
 Component: ld
AssignedTo: unassigned at sources dot redhat dot com
ReportedBy: drow at sources dot redhat dot com
CC: bug-binutils at gnu dot org
GCC target triplet: frv-uclinux


http://sourceware.org/bugzilla/show_bug.cgi?id=6446

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6446] Handling of EF_FRV_PIC

2008-04-22 Thread drow at sources dot redhat dot com


-- 
   What|Removed |Added

 CC||aoliva at sourceware dot org


http://sourceware.org/bugzilla/show_bug.cgi?id=6446

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/6058] New: Linker segfaults with undefined weak function descriptors.

2008-04-08 Thread drow at sources dot redhat dot com
This test file segfaults ld:

.text
.globl  _start
_start: ret
.weak   foo
.weak   foow
.hidden foow

# These should both end up zero.
.data
.picptr funcdesc(foo)
.picptr funcdesc(foow)

sec is NULL at the top of _frvfdpic_emit_got_relocs_plt_entries.  Discovered
while cribbing from the FRV port for SH FDPIC - presumably both should be zero
and have no relocations.  That's what happens for the non-hidden one.

-- 
   Summary: Linker segfaults with undefined weak function
descriptors.
   Product: binutils
   Version: 2.19 (HEAD)
Status: NEW
  Severity: normal
  Priority: P2
 Component: ld
AssignedTo: unassigned at sources dot redhat dot com
ReportedBy: drow at sources dot redhat dot com
CC: aoliva at sourceware dot org,bug-binutils at gnu dot org


http://sourceware.org/bugzilla/show_bug.cgi?id=6058

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6098] fkk0bw

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6098

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6163] fwag42

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6163

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6221] fcyek6

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6221

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6218] fjg9pg

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6218

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6243] fqkddg

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6243

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6064] f02d59

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6064

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6182] foh9z3

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6182

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6165] fise1d

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6165

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6081] fxr0av

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6081

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6072] f6ruta

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6072

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6247] fia4pl

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6247

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6215] facslf

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6215

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6222] fogj78

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6222

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6104] fw26g3

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6104

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6230] fkzjcq

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6230

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6249] fdsxc3

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6249

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6124] fk0zde

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6124

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6138] fwvqoz

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6138

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6103] f2l7f6

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6103

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6194] f8mlk6

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6194

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6166] f4wkn7

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6166

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6177] f87z39

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6177

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6184] f3be5m

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6184

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6061] fdbh8y

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6061

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6207] fvf45c

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6207

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6062] f22hyv

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6062

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6180] f7lntg

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6180

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6134] f1ec6d

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6134

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6150] fqvk6a

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6150

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6079] fv2ns7

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6079

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6226] f7ih5z

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6226

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6068] fm4y40

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6068

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6234] f1ohhj

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6234

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6105] fssv0o

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6105

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6259] fdn397

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6259

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6091] f92siu

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6091

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6174] fnrypz

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6174

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6097] fy5evd

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6097

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6148] fjxoxd

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6148

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6231] fah48v

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6231

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6074] f00p45

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6074

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6245] f6gzft

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6245

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6136] fooo5y

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6136

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6238] fw4j1l

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6238

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6202] fs50q8

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6202

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6248] fyvuv8

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6248

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6217] fhve5b

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6217

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6178] fxt8i0

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6178

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6241] fuxeh0

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6241

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6147] fhl7fm

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6147

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6160] fru204

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6160

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6096] fzvnns

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6096

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6208] f1tm3t

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6208

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6083] fcg23n

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6083

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6130] fuqr7s

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6130

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6118] furq5e

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6118

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6257] flwxpc

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6257

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6191] fmo5m2

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6191

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6161] fm7ygf

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6161

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6195] fc1slj

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6195

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6158] f2pkx7

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6158

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6189] ffdc36

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6189

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6140] facptb

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6140

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6187] fy74ha

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6187

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6156] f8fiyq

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6156

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6239] f9tse7

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6239

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6143] fpihjc

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6143

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6232] f7bn5y

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6232

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6085] fbi06w

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6085

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6188] fdxmgy

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6188

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6254] fs14ui

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6254

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6173] fbftwv

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6173

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6190] f0x9o7

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6190

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6086] fjd66i

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6086

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6175] fmj2g6

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6175

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6122] fo9etx

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6122

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6205] fg9xll

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6205

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6183] fjcdlb

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6183

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6066] fz4p9k

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6066

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6233] fo2cfd

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6233

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6193] fzyvvu

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6193

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6144] fwi5ig

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6144

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug admin/6236] fgsu71

2008-04-08 Thread drow at sources dot redhat dot com

--- Additional Comments From drow at sources dot redhat dot com  2008-04-08 
20:18 ---
spam

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=6236

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


  1   2   3   4   >