diff options
author | Bob Wilson <bob.wilson@acm.org> | 2006-11-27 18:48:57 +0000 |
---|---|---|
committer | Bob Wilson <bwilson@gcc.gnu.org> | 2006-11-27 18:48:57 +0000 |
commit | 327e3a0331622c6be2844716fde0c00e6b5d0b87 (patch) | |
tree | 9d8e97331e45bae41ca16f856b0899114077fa2e /gcc | |
parent | 91c41804cbe481a939aa05f11f9a3d3acd64531a (diff) | |
download | gcc-327e3a0331622c6be2844716fde0c00e6b5d0b87.zip gcc-327e3a0331622c6be2844716fde0c00e6b5d0b87.tar.gz gcc-327e3a0331622c6be2844716fde0c00e6b5d0b87.tar.bz2 |
* config/xtensa/xtensa.h (XCHAL_HAVE_MUL32_HIGH): Provide default.
From-SVN: r119259
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/xtensa/xtensa.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 96a4c6b..35dded2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-11-27 Bob Wilson <bob.wilson@acm.org> + + * config/xtensa/xtensa.h (XCHAL_HAVE_MUL32_HIGH): Provide default. + 2006-11-27 Roger Sayle <roger@eyesopen.com> Manuel Lopez-Ibanez <manu@gcc.gnu.org> diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index 4300e11..d1fe022 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -43,6 +43,9 @@ extern unsigned xtensa_current_frame_size; /* Macros used in the machine description to select various Xtensa configuration options. */ +#ifndef XCHAL_HAVE_MUL32_HIGH +#define XCHAL_HAVE_MUL32_HIGH 0 +#endif #define TARGET_BIG_ENDIAN XCHAL_HAVE_BE #define TARGET_DENSITY XCHAL_HAVE_DENSITY #define TARGET_MAC16 XCHAL_HAVE_MAC16 |