diff options
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/predicates.md | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md index 2d423d4..acc01ee 100644 --- a/gcc/config/i386/predicates.md +++ b/gcc/config/i386/predicates.md @@ -931,21 +931,16 @@ ;; ??? It seems likely that this will only work because cmpsi is an ;; expander, and no actual insns use this. -(define_predicate "cmpsi_operand_1" - (match_code "and") -{ - return (GET_MODE (op) == SImode - && GET_CODE (XEXP (op, 0)) == ZERO_EXTRACT - && GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST_INT - && GET_CODE (XEXP (XEXP (op, 0), 2)) == CONST_INT - && INTVAL (XEXP (XEXP (op, 0), 1)) == 8 - && INTVAL (XEXP (XEXP (op, 0), 2)) == 8 - && GET_CODE (XEXP (op, 1)) == CONST_INT); -}) - (define_predicate "cmpsi_operand" (ior (match_operand 0 "nonimmediate_operand") - (match_operand 0 "cmpsi_operand_1"))) + (and (match_code "and") + (match_code "zero_extract" "0") + (match_code "const_int" "1") + (match_code "const_int" "01") + (match_code "const_int" "02") + (match_test "INTVAL (XEXP (XEXP (op, 0), 1)) == 8") + (match_test "INTVAL (XEXP (XEXP (op, 0), 2)) == 8") + ))) (define_predicate "compare_operator" (match_code "compare")) |