From 68441323e2cc02348391d8108fbe22c34aab56f4 Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Wed, 29 Mar 2006 17:30:23 -0500 Subject: [PATCH] Remove extra parentheses for "M" case. From-SVN: r112512 --- gcc/config/rs6000/constraints.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/rs6000/constraints.md b/gcc/config/rs6000/constraints.md index 114ba8ac2eb..155395d28f7 100644 --- a/gcc/config/rs6000/constraints.md +++ b/gcc/config/rs6000/constraints.md @@ -77,7 +77,7 @@ (define_constraint "M" "constant greater than 31" (and (match_code "const_int") - (match_test "(ival) > 31"))) + (match_test "ival > 31"))) (define_constraint "N" "positive constant that is an exact power of two" -- 2.30.2