diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 2019-10-03 00:17:56 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 2019-10-03 00:17:56 +0000 |
commit | 0a8c8f4d6578fac21adc0e156861c4b47bed4418 (patch) | |
tree | b02887034e59a86a831db4e3615e91092742d520 | |
parent | e6f53878db8cb0e9c96b1393099d7296d6f23329 (diff) | |
download | gcc-0a8c8f4d6578fac21adc0e156861c4b47bed4418.zip gcc-0a8c8f4d6578fac21adc0e156861c4b47bed4418.tar.gz gcc-0a8c8f4d6578fac21adc0e156861c4b47bed4418.tar.bz2 |
Undo unintended change to predicates.md in subversion id 276498
From-SVN: r276503
-rw-r--r-- | gcc/config/rs6000/predicates.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/rs6000/predicates.md b/gcc/config/rs6000/predicates.md index 2e13a7e..345d9c3 100644 --- a/gcc/config/rs6000/predicates.md +++ b/gcc/config/rs6000/predicates.md @@ -851,8 +851,7 @@ ;; Return 1 if OP is a constant but not a valid add_operand. (define_predicate "non_add_cint_operand" (and (match_code "const_int") - (match_test "!satisfies_constraint_I (op) - && !satisfies_constraint_L (op)"))) + (not (match_operand 0 "add_operand")))) ;; Return 1 if the operand is a constant that can be used as the operand ;; of an AND, OR or XOR. |