mirror of git://gcc.gnu.org/git/gcc.git
aarch64-simd.md (vcond<mode><mode>): Delete unused declaration.
* config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete unused declaration. (vcond<v_cmp_mixed><mode>): Ditto. (vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto. From-SVN: r239359
This commit is contained in:
parent
bb2767763e
commit
9ac2d1dee7
|
|
@ -1,6 +1,13 @@
|
|||
2016-08-11 Bin Cheng <bin.cheng@arm.com>
|
||||
|
||||
* config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>: Init
|
||||
* config/aarch64/aarch64-simd.md (vcond<mode><mode>): Delete
|
||||
unused declaration.
|
||||
(vcond<v_cmp_mixed><mode>): Ditto.
|
||||
(vcondu<mode><mode>, vcondu<mode><v_cmp_mixed>): Ditto.
|
||||
|
||||
2016-08-11 Bin Cheng <bin.cheng@arm.com>
|
||||
|
||||
* config/aarch64/aarch64-simd.md (vec_cmp<mode><v_cmp_result>): Init
|
||||
variable explicitly, also assert on it before use.
|
||||
|
||||
2016-08-11 Richard Biener <rguenther@suse.de>
|
||||
|
|
|
|||
|
|
@ -2573,7 +2573,6 @@
|
|||
"TARGET_SIMD"
|
||||
{
|
||||
rtx mask = gen_reg_rtx (<V_cmp_result>mode);
|
||||
enum rtx_code code = GET_CODE (operands[3]);
|
||||
|
||||
emit_insn (gen_vec_cmp<mode><v_cmp_result> (mask, operands[3],
|
||||
operands[4], operands[5]));
|
||||
|
|
@ -2594,7 +2593,6 @@
|
|||
"TARGET_SIMD"
|
||||
{
|
||||
rtx mask = gen_reg_rtx (<V_cmp_result>mode);
|
||||
enum rtx_code code = GET_CODE (operands[3]);
|
||||
|
||||
emit_insn (gen_vec_cmp<mode><v_cmp_result> (mask, operands[3],
|
||||
operands[4], operands[5]));
|
||||
|
|
@ -2616,7 +2614,6 @@
|
|||
"TARGET_SIMD"
|
||||
{
|
||||
rtx mask = gen_reg_rtx (<MODE>mode);
|
||||
enum rtx_code code = GET_CODE (operands[3]);
|
||||
|
||||
emit_insn (gen_vec_cmp<mode><mode> (mask, operands[3],
|
||||
operands[4], operands[5]));
|
||||
|
|
@ -2636,7 +2633,6 @@
|
|||
"TARGET_SIMD"
|
||||
{
|
||||
rtx mask = gen_reg_rtx (<V_cmp_result>mode);
|
||||
enum rtx_code code = GET_CODE (operands[3]);
|
||||
|
||||
emit_insn (gen_vec_cmp<v_cmp_mixed><v_cmp_mixed> (
|
||||
mask, operands[3],
|
||||
|
|
|
|||
Loading…
Reference in New Issue