diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2010-10-01 09:24:04 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2010-10-01 09:24:04 +0000 |
commit | 1ae3762df951eadf9e8c1dfbd2c54b91b818d555 (patch) | |
tree | b462a4fdcc757cb0ae5f47e7f17cb8589bac2d49 | |
parent | 731fc5f040ae78d2bedb8caed5e5f6c15e8071d1 (diff) | |
download | gcc-1ae3762df951eadf9e8c1dfbd2c54b91b818d555.zip gcc-1ae3762df951eadf9e8c1dfbd2c54b91b818d555.tar.gz gcc-1ae3762df951eadf9e8c1dfbd2c54b91b818d555.tar.bz2 |
spu.c (TARGET_EXCEPT_UNWIND_INFO): Set to sjlj_except_unwind_info.
* config/spu/spu.c (TARGET_EXCEPT_UNWIND_INFO): Set to
sjlj_except_unwind_info.
From-SVN: r164872
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/spu/spu.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7c58eb5..062a6f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-10-01 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + + * config/spu/spu.c (TARGET_EXCEPT_UNWIND_INFO): Set to + sjlj_except_unwind_info. + 2010-10-01 Tristan Gingold <gingold@adacore.com> * configure.ac: Define the nop insn for avr*-*-* diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c index 8b462ec..5be6a91 100644 --- a/gcc/config/spu/spu.c +++ b/gcc/config/spu/spu.c @@ -472,6 +472,9 @@ static const struct attribute_spec spu_attribute_table[] = #undef TARGET_OPTION_OPTIMIZATION #define TARGET_OPTION_OPTIMIZATION spu_option_optimization +#undef TARGET_EXCEPT_UNWIND_INFO +#define TARGET_EXCEPT_UNWIND_INFO sjlj_except_unwind_info + struct gcc_target targetm = TARGET_INITIALIZER; static void |