aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2005-01-20 03:03:23 -0800
committerRichard Henderson <rth@gcc.gnu.org>2005-01-20 03:03:23 -0800
commitf4770271b2ece2193dae9fe3d8197b8d63d13ceb (patch)
tree28f7b3fb7a40d2628e962c9cbcd19ff22b0ec006 /gcc/rtl.h
parentb4bb3199a4c08f0a0d079ee230882a568f7adce3 (diff)
downloadgcc-f4770271b2ece2193dae9fe3d8197b8d63d13ceb.zip
gcc-f4770271b2ece2193dae9fe3d8197b8d63d13ceb.tar.gz
gcc-f4770271b2ece2193dae9fe3d8197b8d63d13ceb.tar.bz2
rtl.def (CONST_VECTOR): Use RTX_CONST_OBJ.
* rtl.def (CONST_VECTOR): Use RTX_CONST_OBJ. * rtl.h (CONSTANT_P): Don't special case CONST_VECTOR. From-SVN: r93958
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r--gcc/rtl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 7f9a7df..3fe0963 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -382,8 +382,7 @@ struct rtvec_def GTY(()) {
/* 1 if X is a constant value that is an integer. */
#define CONSTANT_P(X) \
- (GET_RTX_CLASS (GET_CODE (X)) == RTX_CONST_OBJ \
- || GET_CODE (X) == CONST_VECTOR)
+ (GET_RTX_CLASS (GET_CODE (X)) == RTX_CONST_OBJ)
/* 1 if X can be used to represent an object. */
#define OBJECT_P(X) \