Commit 0b81f26c by James Greenhalgh Committed by James Greenhalgh

[AArch64] Fix warning in aarch64.md

gcc/
	* config/aarch64/aarch64.md (insv_imm<mode>): Add modes
	for source operands.

From-SVN: r194589
parent 7b486605
2012-12-18 James Greenhalgh <james.greenhalgh@arm.com> 2012-12-18 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/aarch64.md (insv_imm<mode>): Add modes
for source operands.
2012-12-18 James Greenhalgh <james.greenhalgh@arm.com>
* config/aarch64/aarch64.c (aarch64_simd_attr_length_move): * config/aarch64/aarch64.c (aarch64_simd_attr_length_move):
Remove unused variables. Remove unused variables.
(aarch64_split_compare_and_swap): Likewise. (aarch64_split_compare_and_swap): Likewise.
...@@ -840,8 +840,8 @@ ...@@ -840,8 +840,8 @@
(define_insn "insv_imm<mode>" (define_insn "insv_imm<mode>"
[(set (zero_extract:GPI (match_operand:GPI 0 "register_operand" "+r") [(set (zero_extract:GPI (match_operand:GPI 0 "register_operand" "+r")
(const_int 16) (const_int 16)
(match_operand 1 "const_int_operand" "n")) (match_operand:GPI 1 "const_int_operand" "n"))
(match_operand 2 "const_int_operand" "n"))] (match_operand:GPI 2 "const_int_operand" "n"))]
"INTVAL (operands[1]) < GET_MODE_BITSIZE (<MODE>mode) "INTVAL (operands[1]) < GET_MODE_BITSIZE (<MODE>mode)
&& INTVAL (operands[1]) % 16 == 0 && INTVAL (operands[1]) % 16 == 0
&& INTVAL (operands[2]) <= 0xffff" && INTVAL (operands[2]) <= 0xffff"
......
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