diff options
author | Richard Henderson <rth@cygnus.com> | 1998-12-29 04:03:36 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-12-29 04:03:36 -0800 |
commit | 30dfe54ae2534ed75ce025884ead2d09dc85c0ce (patch) | |
tree | 641222212d07a68bc6ebdb39a473ada8947f88ce /gcc/rtl.h | |
parent | 11301057f62d26a0db065330d9a53d142214a6c8 (diff) | |
download | gcc-30dfe54ae2534ed75ce025884ead2d09dc85c0ce.zip gcc-30dfe54ae2534ed75ce025884ead2d09dc85c0ce.tar.gz gcc-30dfe54ae2534ed75ce025884ead2d09dc85c0ce.tar.bz2 |
* rtl.h (CONSTANT_P): Remove CONSTANT_P_RTX.
From-SVN: r24441
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -217,8 +217,7 @@ typedef struct rtvec_def{ #define CONSTANT_P(X) \ (GET_CODE (X) == LABEL_REF || GET_CODE (X) == SYMBOL_REF \ || GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST_DOUBLE \ - || GET_CODE (X) == CONST || GET_CODE (X) == HIGH \ - || GET_CODE (X) == CONSTANT_P_RTX) + || GET_CODE (X) == CONST || GET_CODE (X) == HIGH) /* General accessor macros for accessing the fields of an rtx. */ |