diff options
author | David Edelsohn <dje@gcc.gnu.org> | 2006-03-29 17:30:23 -0500 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2006-03-29 17:30:23 -0500 |
commit | 68441323e2cc02348391d8108fbe22c34aab56f4 (patch) | |
tree | 4a358ed6f996bbc44b6faebe997d4b29da4eeb4b | |
parent | 0a931ce5d4c3764db08c5eff8400725525b10c0a (diff) | |
download | gcc-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.md | 2 |
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" |