diff options
author | J"orn Rennecke <joern.rennecke@st.com> | 2005-07-07 11:48:15 +0000 |
---|---|---|
committer | Joern Rennecke <amylaar@gcc.gnu.org> | 2005-07-07 12:48:15 +0100 |
commit | 8ddf681af74e5404974fb47b0b9874de49a3b07d (patch) | |
tree | e7a18c9a6876b4eaa648b82269a93800d9c41279 /gcc/hooks.c | |
parent | 6d057022743cd9dd0e46c494f0d9449cb7e5aad0 (diff) | |
download | gcc-8ddf681af74e5404974fb47b0b9874de49a3b07d.zip gcc-8ddf681af74e5404974fb47b0b9874de49a3b07d.tar.gz gcc-8ddf681af74e5404974fb47b0b9874de49a3b07d.tar.bz2 |
hooks.c (hook_bool_rtx_int_false): New function.
* hooks.c (hook_bool_rtx_int_false): New function.
* hooks.h (hook_bool_rtx_int_false): Declare.
* target-def.h (TARGET_COMMUTATIVE_P): Define.
(TARGET_INITIALIZER): Add TARGET_COMMUTATIVE_P.
* target.h (struct gcc_target): Add commutative_p member.
* targhooks.c (hook_bool_rtx_commutative_p): New function.
* targhooks.h (hook_bool_rtx_commutative_p): Declare.
* pa.c (TARGET_COMMUTATIVE_P): Redefine.
(pa_commutative_p): New function.
* jump.c (target.h): Include.
(rtx_renumbered_equal_p): Use targetm.commutative_p.
* doc/tm.texi: Document TARGET_COMMUTATIVE_P.
From-SVN: r101706
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r-- | gcc/hooks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c index 78871a4..2ebd071 100644 --- a/gcc/hooks.c +++ b/gcc/hooks.c @@ -192,6 +192,12 @@ hook_bool_rtx_false (rtx a ATTRIBUTE_UNUSED) } bool +hook_bool_rtx_int_false (rtx a ATTRIBUTE_UNUSED, int code ATTRIBUTE_UNUSED) +{ + return false; +} + +bool hook_bool_uintp_uintp_false (unsigned int *a ATTRIBUTE_UNUSED, unsigned int *b ATTRIBUTE_UNUSED) { |