Changeset 3156582 in mainline for src


Ignore:
Timestamp:
2005-09-11T12:48:42Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8e3fb24c
Parents:
8491c48
Message:

Updated symtab so that it works correctly with BE architectures.
Changed compiler for BE MIPS to be mips-sgi-irix5, because
mipsel -EB does not behave correctly.
Doc updates to amd64.
Added ARC BIOS support to MIPS architecture. Putchar works correctly,
kernel passed FPU & some rwlock tests.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/debug/symtab.c

    r8491c48 r3156582  
    4040
    4141        for (i=1;symbol_table[i].address_le;++i) {
    42                 if (addr < native_le2host(symbol_table[i].address_le))
     42                if (addr < u64_le2host(symbol_table[i].address_le))
    4343                        break;
    4444        }
    45         if (addr >= native_le2host(symbol_table[i-1].address_le))
     45        if (addr >= u64_le2host(symbol_table[i-1].address_le))
    4646                return symbol_table[i-1].symbol_name;
    4747        return NULL;
Note: See TracChangeset for help on using the changeset viewer.