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/config/m32r/m32r.c | |
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/config/m32r/m32r.c')
-rw-r--r-- | gcc/config/m32r/m32r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m32r/m32r.c b/gcc/config/m32r/m32r.c index 71ce534..2286a857 100644 --- a/gcc/config/m32r/m32r.c +++ b/gcc/config/m32r/m32r.c @@ -605,7 +605,7 @@ call26_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) /* Return 1 if OP is a DImode const we want to handle inline. This must match the code in the movdi pattern. - It is used by the 'G' CONST_DOUBLE_OK_FOR_LETTER. */ + It is used by the 'G' constraint. */ int easy_di_const (rtx op) @@ -625,7 +625,7 @@ easy_di_const (rtx op) /* Return 1 if OP is a DFmode const we want to handle inline. This must match the code in the movdf pattern. - It is used by the 'H' CONST_DOUBLE_OK_FOR_LETTER. */ + It is used by the 'H' constraint. */ int easy_df_const (rtx op) |