From c25405f86783ac0aeaa2bd8584d939d605eeeaf2 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sun, 8 Feb 2004 20:12:19 +0000 Subject: 2004-02-08 Joel Sherrill * vectors/vectors.h: Force globalExceptHdl into bss section. --- c/src/lib/libbsp/powerpc/shared/ChangeLog | 4 ++++ c/src/lib/libbsp/powerpc/shared/vectors/vectors.h | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'c') diff --git a/c/src/lib/libbsp/powerpc/shared/ChangeLog b/c/src/lib/libbsp/powerpc/shared/ChangeLog index e5cfb94f2d..54049b8e05 100644 --- a/c/src/lib/libbsp/powerpc/shared/ChangeLog +++ b/c/src/lib/libbsp/powerpc/shared/ChangeLog @@ -1,3 +1,7 @@ +2004-02-08 Joel Sherrill + + * vectors/vectors.h: Force globalExceptHdl into bss section. + 2004-02-04 Ralf Corsepius * Makefile.am: Don't install, just distribute the files. diff --git a/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h b/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h index f995b16303..9e1ec30d2c 100644 --- a/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h +++ b/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h @@ -137,7 +137,8 @@ typedef struct { typedef void (*exception_handler_t) (BSP_Exception_frame* excPtr); -extern exception_handler_t globalExceptHdl; +extern exception_handler_t globalExceptHdl + __attribute__ ((section (".bss"))); /* * Compatibility with pc386 */ -- cgit v1.2.3