From 0824c0d2334d0964227211b604461fd8f5547e94 Mon Sep 17 00:00:00 2001 From: rth Date: Thu, 20 Jan 2005 11:03:23 +0000 Subject: * rtl.def (CONST_VECTOR): Use RTX_CONST_OBJ. * rtl.h (CONSTANT_P): Don't special case CONST_VECTOR. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93958 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/rtl.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/rtl.h') diff --git a/gcc/rtl.h b/gcc/rtl.h index 7f9a7df40db..3fe09630105 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) \ -- cgit v1.2.1