Commit 95e8f2f3 by David Edelsohn

improve test for last change

From-SVN: r14046
parent 6e6a07d2
...@@ -2138,7 +2138,7 @@ ...@@ -2138,7 +2138,7 @@
(match_operand:SI 2 "const_int_operand" "i")) (match_operand:SI 2 "const_int_operand" "i"))
(lshiftrt:SI (match_operand:SI 3 "gpc_reg_operand" "r") (lshiftrt:SI (match_operand:SI 3 "gpc_reg_operand" "r")
(match_operand:SI 4 "const_int_operand" "i")))] (match_operand:SI 4 "const_int_operand" "i")))]
"(32 - INTVAL (operands[4])) >= INTVAL (operands[1])" "(32 - (INTVAL (operands[4]) & 31)) >= INTVAL (operands[1])"
"* "*
{ {
int shift = INTVAL (operands[4]) & 31; int shift = INTVAL (operands[4]) & 31;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment