mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
Remove conditionals causing a bug in listings.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2000-02-04 Timothy Wall <twall@redhat.com>
|
||||||
|
|
||||||
|
* listing.c (print_lines): Remove conditionals causing bug in
|
||||||
|
listings.
|
||||||
|
|
||||||
2000-02-03 Timothy Wall <twall@cygnus.com>
|
2000-02-03 Timothy Wall <twall@cygnus.com>
|
||||||
|
|
||||||
* as.h: Define OCTETS_PER_BYTE and OCTETS_PER_BYTE_POWER
|
* as.h: Define OCTETS_PER_BYTE and OCTETS_PER_BYTE_POWER
|
||||||
|
@ -713,15 +713,8 @@ print_lines (list, lineno, string, address)
|
|||||||
while (src[cur] && idx < nchars)
|
while (src[cur] && idx < nchars)
|
||||||
{
|
{
|
||||||
int offset;
|
int offset;
|
||||||
#if TARGET_BYTES_BIG_ENDIAN != 0
|
|
||||||
offset = cur;
|
offset = cur;
|
||||||
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
||||||
#else
|
|
||||||
offset = (cur & ~(LISTING_WORD_SIZE * 2 - 1))
|
|
||||||
+ (LISTING_WORD_SIZE - octet_in_word - 1) * 2;
|
|
||||||
if (offset < end)
|
|
||||||
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
|
||||||
#endif
|
|
||||||
cur += 2;
|
cur += 2;
|
||||||
octet_in_word++;
|
octet_in_word++;
|
||||||
|
|
||||||
@ -764,15 +757,8 @@ print_lines (list, lineno, string, address)
|
|||||||
while (src[cur] && idx < nchars)
|
while (src[cur] && idx < nchars)
|
||||||
{
|
{
|
||||||
int offset;
|
int offset;
|
||||||
#if TARGET_BYTES_BIG_ENDIAN != 0
|
|
||||||
offset = cur;
|
offset = cur;
|
||||||
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
||||||
#else
|
|
||||||
offset = (cur & ~(LISTING_WORD_SIZE * 2 - 1))
|
|
||||||
+ (LISTING_WORD_SIZE - octet_in_word - 1) * 2;
|
|
||||||
if (offset < end)
|
|
||||||
fprintf (list_file, "%c%c", src[offset], src[offset+1]);
|
|
||||||
#endif
|
|
||||||
cur += 2;
|
cur += 2;
|
||||||
idx += 2;
|
idx += 2;
|
||||||
octet_in_word++;
|
octet_in_word++;
|
||||||
|
Reference in New Issue
Block a user