diff options
author | Claudiu Zissulescu <claziss@synopsys.com> | 2017-07-17 14:32:02 +0200 |
---|---|---|
committer | Claudiu Zissulescu <claziss@gcc.gnu.org> | 2017-07-17 14:32:02 +0200 |
commit | f26322a6f74f7d22bdee3a11b6b3ffbd1c2867a9 (patch) | |
tree | d559eca16962079e7a0e8e9622e1eeac76f043bc /gcc/config/arc/linux.h | |
parent | 5337720c54ee8529d7d16d6f1eaa0b5556f60426 (diff) | |
download | gcc-f26322a6f74f7d22bdee3a11b6b3ffbd1c2867a9.zip gcc-f26322a6f74f7d22bdee3a11b6b3ffbd1c2867a9.tar.gz gcc-f26322a6f74f7d22bdee3a11b6b3ffbd1c2867a9.tar.bz2 |
[ARC] Enable indexed loads for elf targers.
Enable indexed loads only for elf target, as the linux ones need more testing.
gcc/
2017-02-28 Claudiu Zissulescu <claziss@synopsys.com>
* config/arc/arc.opt (mindexed-loads): Use initial value
TARGET_INDEXED_LOADS_DEFAULT.
(mauto-modify-reg): Use initial value
TARGET_AUTO_MODIFY_REG_DEFAULT.
* config/arc/elf.h (TARGET_INDEXED_LOADS_DEFAULT): Define.
(TARGET_AUTO_MODIFY_REG_DEFAULT): Likewise.
* config/arc/linux.h (TARGET_INDEXED_LOADS_DEFAULT): Define.
(TARGET_AUTO_MODIFY_REG_DEFAULT): Likewise.
From-SVN: r250274
Diffstat (limited to 'gcc/config/arc/linux.h')
-rw-r--r-- | gcc/config/arc/linux.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/arc/linux.h b/gcc/config/arc/linux.h index 83e5a1d..d8e0063 100644 --- a/gcc/config/arc/linux.h +++ b/gcc/config/arc/linux.h @@ -83,3 +83,11 @@ along with GCC; see the file COPYING3. If not see #define SUBTARGET_CPP_SPEC "\ %{pthread:-D_REENTRANT} \ " + +/* Indexed loads are default off. */ +#undef TARGET_INDEXED_LOADS_DEFAULT +#define TARGET_INDEXED_LOADS_DEFAULT 0 + +/* Pre/post modify with register displacement are default off. */ +#undef TARGET_AUTO_MODIFY_REG_DEFAULT +#define TARGET_AUTO_MODIFY_REG_DEFAULT 0 |