diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-06-03 07:27:13 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-06-03 07:27:13 +0000 |
commit | b48e9677e5550d60c4f1b4ea05b88b150173ebe0 (patch) | |
tree | 9491259b0d05c2a1d5ac9632e9d177ebbae81e81 /gcc/system.h | |
parent | 99d14de62fb7401b8099c42fca44413662318e40 (diff) | |
download | gcc-b48e9677e5550d60c4f1b4ea05b88b150173ebe0.zip gcc-b48e9677e5550d60c4f1b4ea05b88b150173ebe0.tar.gz gcc-b48e9677e5550d60c4f1b4ea05b88b150173ebe0.tar.bz2 |
gcc/
* defaults.h (USE_MD_CONSTRAINTS, EXTRA_MEMORY_CONSTRAINT)
(EXTRA_ADDRESS_CONSTRAINT, DEFAULT_CONSTRAINT_LEN, CONSTRAINT_LEN)
(CONST_OK_FOR_CONSTRAINT_P, CONST_DOUBLE_OK_FOR_LETTER_P)
(REG_CLASS_FROM_CONSTRAINT, EXTRA_CONSTRAINT_STR): Delete definitions
in this file.
(REG_CLASS_FROM_LETTER, CONST_OK_FOR_LETTER_P)
(CONST_DOUBLE_OK_FOR_LETTER_P, EXTRA_CONSTRAINT): Move poising to...
* system.h: ...here and make it unconditional.
* target.def (conditional_register_usage): Mention
define_register_constraint instead of old-style constraint macros.
* doc/tm.texi.in: Remove documentation for old-style constraint macros.
* doc/tm.texi: Regenerate.
* genoutput.c: Remove USE_MD_CONSTRAINTS conditions and all code
protected by !USE_MD_CONSTRAINTS.
* config/frv/frv.md: Remove quote from old version of documentation.
* config/frv/frv.c (frv_conditional_register_usage): Likewise.
* config/m32r/m32r.c (easy_di_const, easy_df_const): Avoid mentioning
CONST_DOUBLE_OK_FOR_LETTER.
* config/sh/constraints.md: Likewise EXTRA_CONSTRAINT.
From-SVN: r211161
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index 6cb24b0..51b9067 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -928,7 +928,9 @@ extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; USE_COMMON_FOR_ONE_ONLY IFCVT_EXTRA_FIELDS IFCVT_INIT_EXTRA_FIELDS \ CASE_USE_BIT_TESTS FIXUNS_TRUNC_LIKE_FIX_TRUNC \ GO_IF_MODE_DEPENDENT_ADDRESS DELAY_SLOTS_FOR_EPILOGUE \ - ELIGIBLE_FOR_EPILOGUE_DELAY TARGET_C99_FUNCTIONS TARGET_HAS_SINCOS + ELIGIBLE_FOR_EPILOGUE_DELAY TARGET_C99_FUNCTIONS TARGET_HAS_SINCOS \ + REG_CLASS_FROM_LETTER CONST_OK_FOR_LETTER_P \ + CONST_DOUBLE_OK_FOR_LETTER_P EXTRA_CONSTRAINT /* Hooks that are no longer used. */ #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE \ |