summaryrefslogtreecommitdiff
path: root/gcc/config/c4x/c4x.h
diff options
context:
space:
mode:
authorMichael Hayes <m.hayes@elec.canterbury.ac.nz>2004-01-26 00:12:05 +0000
committerMichael Hayes <m.hayes@gcc.gnu.org>2004-01-26 00:12:05 +0000
commit1e903c616ecfe423377daf798b1213700d0e27b9 (patch)
tree9ab955841db9be37f272aff1a1029b3ce276f9aa /gcc/config/c4x/c4x.h
parent3f12cd9b3cfa9d4011eda8a9b469107a59ffe6e0 (diff)
downloadgcc-1e903c616ecfe423377daf798b1213700d0e27b9.tar.gz
c4x.c (c4x_check_legit_addr): Rename to c4x_legitimate_address_p.
* config/c4x/c4x.c (c4x_check_legit_addr): Rename to c4x_legitimate_address_p. Fix post_modify check. * config/c4x/c4x-protos.h (c4x_check_legit_addr): Adjust. * config/c4x/c4x.h (c4x_check_legit_addr): Adjust. From-SVN: r76601
Diffstat (limited to 'gcc/config/c4x/c4x.h')
-rw-r--r--gcc/config/c4x/c4x.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h
index ca82dd81216..8ee98a47cc3 100644
--- a/gcc/config/c4x/c4x.h
+++ b/gcc/config/c4x/c4x.h
@@ -1259,7 +1259,7 @@ CUMULATIVE_ARGS;
#define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR) \
{ \
- if (c4x_check_legit_addr (MODE, X, 0)) \
+ if (c4x_legitimate_address_p (MODE, X, 0)) \
goto ADDR; \
}
@@ -1275,7 +1275,7 @@ CUMULATIVE_ARGS;
#define GO_IF_LEGITIMATE_ADDRESS(MODE, X, ADDR) \
{ \
- if (c4x_check_legit_addr (MODE, X, 1)) \
+ if (c4x_legitimate_address_p (MODE, X, 1)) \
goto ADDR; \
}