diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2023-09-06 20:13:22 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2023-10-28 19:57:30 -0700 |
commit | cc7aca846ae524f36a350cd54cd31da22acd6805 (patch) | |
tree | ed49e6b77bb0435d6121b0d0ef188b4dd662eb77 | |
parent | b8b63e87669ef835e367f7b8ad437c6d1a6791f1 (diff) | |
download | gcc-cc7aca846ae524f36a350cd54cd31da22acd6805.zip gcc-cc7aca846ae524f36a350cd54cd31da22acd6805.tar.gz gcc-cc7aca846ae524f36a350cd54cd31da22acd6805.tar.bz2 |
gcc: xtensa: fix salt/saltu version check
gcc/
* config/xtensa/xtensa.h (TARGET_SALT): Change HW version from
260000 (which corresponds to RF-2014.0) to 270000 (which
corresponds to RG-2015.0, the release where salt/saltu opcodes
were introduced).
-rw-r--r-- | gcc/config/xtensa/xtensa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index 5987681..49e6350 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -54,7 +54,7 @@ along with GCC; see the file COPYING3. If not see #define TARGET_WINDOWED_ABI xtensa_windowed_abi #define TARGET_DEBUG XCHAL_HAVE_DEBUG #define TARGET_L32R XCHAL_HAVE_L32R -#define TARGET_SALT (XTENSA_MARCH_EARLIEST >= 260000) +#define TARGET_SALT (XTENSA_MARCH_EARLIEST >= 270000) #define TARGET_DEFAULT (MASK_SERIALIZE_VOLATILE) |