diff options
author | Bob Wilson <bob.wilson@acm.org> | 2006-11-27 20:15:58 +0000 |
---|---|---|
committer | Bob Wilson <bwilson@gcc.gnu.org> | 2006-11-27 20:15:58 +0000 |
commit | fbee3d219a7626309de46cd55ef83247b2d63497 (patch) | |
tree | 59bb5647b01457feafe101e0a4693c542de68532 | |
parent | 71615adf0cb12ff53151630b94c7b9b53db518e0 (diff) | |
download | gcc-fbee3d219a7626309de46cd55ef83247b2d63497.zip gcc-fbee3d219a7626309de46cd55ef83247b2d63497.tar.gz gcc-fbee3d219a7626309de46cd55ef83247b2d63497.tar.bz2 |
xtensa-config.h (XSHAL_ABI): New.
* xtensa-config.h (XSHAL_ABI): New.
(XTHAL_ABI_WINDOWED, XTHAL_ABI_CALL0): New.
From-SVN: r119261
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/xtensa-config.h | 11 |
2 files changed, 15 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index d062490..c7fce38 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2006-11-27 Bob Wilson <bob.wilson@acm.org> + + * xtensa-config.h (XSHAL_ABI): New. + (XTHAL_ABI_WINDOWED, XTHAL_ABI_CALL0): New. + 2006-04-11 Jim Blandy <jimb@codesourcery.com> * libiberty.h (pex_input_file, pex_input_pipe): New declarations. diff --git a/include/xtensa-config.h b/include/xtensa-config.h index 5c0315d..36f9719 100644 --- a/include/xtensa-config.h +++ b/include/xtensa-config.h @@ -1,5 +1,6 @@ /* Xtensa configuration settings. - Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. Contributed by Bob Wilson (bwilson@tensilica.com) at Tensilica. This program is free software; you can redistribute it and/or modify @@ -145,4 +146,12 @@ #undef XCHAL_INST_FETCH_WIDTH #define XCHAL_INST_FETCH_WIDTH 4 + +#undef XSHAL_ABI +#undef XTHAL_ABI_WINDOWED +#undef XTHAL_ABI_CALL0 +#define XSHAL_ABI XTHAL_ABI_WINDOWED +#define XTHAL_ABI_WINDOWED 0 +#define XTHAL_ABI_CALL0 1 + #endif /* !XTENSA_CONFIG_H */ |