diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-10-08 21:57:39 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-10-08 21:57:39 +0000 |
commit | 3c75ab00ab34402b2fc4235b9732d94375fe47a0 (patch) | |
tree | 571287b4efaf9c1ec57430a485a3122909eaeae8 /arch/mips64/ld.script.elf32.S | |
parent | cf2c804b34d03041a71911786420aa974ebcdfcb (diff) |
Fix one more linker script.
Diffstat (limited to 'arch/mips64/ld.script.elf32.S')
-rw-r--r-- | arch/mips64/ld.script.elf32.S | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/mips64/ld.script.elf32.S b/arch/mips64/ld.script.elf32.S index 8afa60329..b6539a68f 100644 --- a/arch/mips64/ld.script.elf32.S +++ b/arch/mips64/ld.script.elf32.S @@ -12,6 +12,16 @@ SECTIONS /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) } =0 + + . = ALIGN(16); /* Exception table */ + __start___ex_table = .; + __ex_table : { *(__ex_table) } + __stop___ex_table = .; + + __start___dbe_table = .; /* Exception table for data bus errors */ + __dbe_table : { *(__ex_table) } + __stop___dbe_table = .; + _etext = .; . = ALIGN(16384); |