i386.h (NON_QI_REG_P): Remove.

* config/i386/i386.h (NON_QI_REG_P): Remove.
	* config/i386/predicates.md (non_q_regs_operand): Remove.

From-SVN: r121375
This commit is contained in:
Kazu Hirata 2007-01-31 05:06:08 +00:00
parent 88512ba0b8
commit fa7a9f691c
2 changed files with 0 additions and 12 deletions

View File

@ -1243,9 +1243,6 @@ enum reg_class
#define ANY_QI_REG_P(X) (TARGET_64BIT ? GENERAL_REG_P(X) : QI_REG_P (X))
#define NON_QI_REG_P(X) \
(REG_P (X) && IN_RANGE (REGNO (X), 4, FIRST_PSEUDO_REGISTER - 1))
#define REX_INT_REGNO_P(N) \
IN_RANGE ((N), FIRST_REX_INT_REG, LAST_REX_INT_REG)
#define REX_INT_REG_P(X) (REG_P (X) && REX_INT_REGNO_P (REGNO (X)))

View File

@ -52,15 +52,6 @@
return ANY_QI_REG_P (op);
})
;; Return true if op is a NON_Q_REGS class register.
(define_predicate "non_q_regs_operand"
(match_operand 0 "register_operand")
{
if (GET_CODE (op) == SUBREG)
op = SUBREG_REG (op);
return NON_QI_REG_P (op);
})
;; Match an SI or HImode register for a zero_extract.
(define_special_predicate "ext_register_operand"
(match_operand 0 "register_operand")