diff options
author | Jan Hubicka <jh@suse.cz> | 2003-02-01 00:34:17 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2003-01-31 23:34:17 +0000 |
commit | b0c42aed3116a712a4c4da3ec2f124c542271f18 (patch) | |
tree | 138fc4b6ba88f9caad65f412fbe421e92fc1dcf1 /gcc/hard-reg-set.h | |
parent | 1f61a15d9e3cde5dbe910c23b045f300d03f3c6f (diff) | |
download | gcc-b0c42aed3116a712a4c4da3ec2f124c542271f18.zip gcc-b0c42aed3116a712a4c4da3ec2f124c542271f18.tar.gz gcc-b0c42aed3116a712a4c4da3ec2f124c542271f18.tar.bz2 |
loop.c (emit_prefetch_instructions): Do conversion at right place in RTL chain.
* loop.c (emit_prefetch_instructions): Do conversion at right place in
RTL chain.
* combine.c (simplify_set): Reverse order of ragumetns to
REG_CANNOT_CHANGE_MODE_P
* df.c (df_def_record_1): Likewise.
* recog.c (register_operand): Likewise.
* simplify-rtx.c (simplify_subreg): Likewise.
* hard-reg-set.h (REG_CANNOT_CHANGE_MODE_P): Update use of
CANNOT_CHANGE_MODE_CLASS.
* regclass.c (cannot_change_mode_set_regs, invalid_mode_change_p):
Likewise.
* reload.c (push_reload): Likewise.
* alpha.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* ia64.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* mips.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* mips-protos.h (mips_cannot_change_mode_class): Update prototype.
* mips.c (mips_cannot_change_mode_class): Update.
* pa64-regs.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* rs6000.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* s390.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* sh.h (CANNOT_CHANGE_MODE_CLASS): Update definition.
* sh-protos.h (sh_cannot_change_mode_class): Update prototype.
* sh.c (sh_cannot_change_mode_class): Update.
* i386.h (CANNOT_CHANGE_MODE_CLASS): New.
* tm.texi (CANNOT_CHANGE_MODE_CLASS): Update documentation.
From-SVN: r62212
Diffstat (limited to 'gcc/hard-reg-set.h')
-rw-r--r-- | gcc/hard-reg-set.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/hard-reg-set.h b/gcc/hard-reg-set.h index 0574738..53330cf 100644 --- a/gcc/hard-reg-set.h +++ b/gcc/hard-reg-set.h @@ -491,8 +491,6 @@ extern const char * reg_names[FIRST_PSEUDO_REGISTER]; /* Given a hard REGN a FROM mode and a TO mode, return nonzero if REGN cannot change modes between the specified modes. */ #define REG_CANNOT_CHANGE_MODE_P(REGN, FROM, TO) \ - (TEST_HARD_REG_BIT \ - (reg_class_contents[(int) CANNOT_CHANGE_MODE_CLASS (FROM, TO)], \ - REGN)) + CANNOT_CHANGE_MODE_CLASS (FROM, TO, REGNO_REG_CLASS (REGN)) #endif /* ! GCC_HARD_REG_SET_H */ |