https://sourceware.org/bugzilla/show_bug.cgi?id=23481

--- Comment #1 from James Patrick Conlon <cptjustice at gmail dot com> ---
Created attachment 11165
  --> https://sourceware.org/bugzilla/attachment.cgi?id=11165&action=edit
Assembly for the test suite

This is some assembly for the test suite.

Output of current gas:
Disassembly of section .text:
  6 
  7 00000000 <start>:
  8    0:   2009            cmp     r0, (r1)
  9    2:   203f fffa       cmp     r0, *$0 <start>
 10    6:   2240            cmp     (r1), r0
 11    8:   2fc0 fff4       cmp     *$0 <start>, r0
 12    c:   227f fff0       cmp     (r1), *$0 <start>
 13         ...

Output with patch:
Disassembly of section .text:
  6 
  7 00000000 <start>:
  8    0:   2009            cmp     r0, (r1)
  9    2:   2009            cmp     r0, (r1)
 10    4:   2240            cmp     (r1), r0
 11    6:   2240            cmp     (r1), r0
 12    8:   2249            cmp     (r1), (r1)
 13         ...

I would make a .d file for the assembly, but for the life of me, I can't figure
out how.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to