diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-06-03 22:23:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-06-03 22:23:10 +0000 |
commit | 3ec8da655c7df40c184b347d556c553663e47f3d (patch) | |
tree | bc7dfe5ba3d02e9cb900a82160931a0733172ab1 /libgloss/mn10300 | |
parent | 163328965683ec08acab9c2247b8efcb81ec8eb0 (diff) | |
download | newlib-3ec8da655c7df40c184b347d556c553663e47f3d.zip newlib-3ec8da655c7df40c184b347d556c553663e47f3d.tar.gz newlib-3ec8da655c7df40c184b347d556c553663e47f3d.tar.bz2 |
2004-06-03 Alexandre Oliva <aoliva@redhat.com>
* mn10300/sim.ld: Start at address 4, to avoid ambiguity with NULL
pointers.
Diffstat (limited to 'libgloss/mn10300')
-rw-r--r-- | libgloss/mn10300/sim.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/mn10300/sim.ld b/libgloss/mn10300/sim.ld index 6824cdd..0bfa278 100644 --- a/libgloss/mn10300/sim.ld +++ b/libgloss/mn10300/sim.ld @@ -13,7 +13,7 @@ SECTIONS { /* Read-only sections, merged into text segment: */ /* Start of RAM (leaving room for Cygmon data) */ - . = 0; + . = 4; .interp : { *(.interp) } .hash : { *(.hash) } |