aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <dje@gcc.gnu.org>2006-03-29 17:30:23 -0500
committerDavid Edelsohn <dje@gcc.gnu.org>2006-03-29 17:30:23 -0500
commit68441323e2cc02348391d8108fbe22c34aab56f4 (patch)
tree4a358ed6f996bbc44b6faebe997d4b29da4eeb4b
parent0a931ce5d4c3764db08c5eff8400725525b10c0a (diff)
downloadgcc-68441323e2cc02348391d8108fbe22c34aab56f4.zip
gcc-68441323e2cc02348391d8108fbe22c34aab56f4.tar.gz
gcc-68441323e2cc02348391d8108fbe22c34aab56f4.tar.bz2
Remove extra parentheses for "M" case.
From-SVN: r112512
-rw-r--r--gcc/config/rs6000/constraints.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/constraints.md b/gcc/config/rs6000/constraints.md
index 114ba8a..155395d 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"