2010-08-26 Gedare Bloom <giddyup44@yahoo.com>

PR 1691/bsps
	* shared/include/traptable.h: Double the size of TABLE_SIZE to copy
	code branched to from the trap table.
This commit is contained in:
Joel Sherrill
2010-08-26 18:04:51 +00:00
parent 6ed22abde2
commit ad8b61431b
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2010-08-26 Gedare Bloom <giddyup44@yahoo.com>
PR 1691/bsps
* shared/include/traptable.h: Double the size of TABLE_SIZE to copy
code branched to from the trap table.
2010-08-03 Joel Sherrill <joel.sherrilL@OARcorp.com>
* shared/startup/linkcmds: Add .gcc_except_table*.

View File

@@ -13,7 +13,8 @@
/* This file can be included by assembly code */
#define ENTRY_SIZE (32)
#define TABLE_SIZE (1024*ENTRY_SIZE)
#define TABLE_SIZE (1024*ENTRY_SIZE * 2 /* HACK */ )
#ifndef ASM
extern void* trap_table[TABLE_SIZE];