From: John David Anglin Date: Thu, 30 Dec 2010 21:57:32 +0000 (+0000) Subject: pa.md: Add ",*" condition to 64-bit add/subtract boolean patterns. X-Git-Tag: releases/gcc-4.5.3~337 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8410f7e07a7c42c2167e812a52d19b2e817773b;p=thirdparty%2Fgcc.git pa.md: Add ",*" condition to 64-bit add/subtract boolean patterns. * config/pa/pa.md: Add ",*" condition to 64-bit add/subtract boolean patterns. From-SVN: r168353 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a60b9b8c3b77..de26b22228ed 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-12-30 John David Anglin + + * config/pa/pa.md: Add ",*" condition to 64-bit add/subtract boolean + patterns. + 2010-12-27 Yao Qi Backport from mainline: diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 2d4f5b4a31ee..2e732e68ae3d 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -811,7 +811,7 @@ (match_operand:DI 3 "arith11_operand" "rI")) (match_operand:DI 1 "register_operand" "r")))] "TARGET_64BIT" - "sub%I3 %3,%2,%%r0\;add,dc %%r0,%1,%0" + "sub%I3,* %3,%2,%%r0\;add,dc %%r0,%1,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -833,7 +833,7 @@ (match_operand:DI 3 "register_operand" "r")) (match_operand:DI 1 "register_operand" "r")))] "TARGET_64BIT" - "sub %2,%3,%%r0\;add,dc %%r0,%1,%0" + "sub,* %2,%3,%%r0\;add,dc %%r0,%1,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -856,7 +856,7 @@ (match_operand:DI 3 "int11_operand" "I")) (match_operand:DI 1 "register_operand" "r")))] "TARGET_64BIT" - "addi %k3,%2,%%r0\;add,dc %%r0,%1,%0" + "addi,* %k3,%2,%%r0\;add,dc %%r0,%1,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -902,7 +902,7 @@ (gtu:DI (match_operand:DI 2 "register_operand" "r") (match_operand:DI 3 "arith11_operand" "rI"))))] "TARGET_64BIT" - "sub%I3 %3,%2,%%r0\;sub,db %1,%%r0,%0" + "sub%I3,* %3,%2,%%r0\;sub,db %1,%%r0,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -924,7 +924,7 @@ (match_operand:DI 3 "arith11_operand" "rI"))) (match_operand:DI 4 "register_operand" "r")))] "TARGET_64BIT" - "sub%I3 %3,%2,%%r0\;sub,db %1,%4,%0" + "sub%I3,* %3,%2,%%r0\;sub,db %1,%4,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -946,7 +946,7 @@ (ltu:DI (match_operand:DI 2 "register_operand" "r") (match_operand:DI 3 "register_operand" "r"))))] "TARGET_64BIT" - "sub %2,%3,%%r0\;sub,db %1,%%r0,%0" + "sub,* %2,%3,%%r0\;sub,db %1,%%r0,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -968,7 +968,7 @@ (match_operand:DI 3 "register_operand" "r"))) (match_operand:DI 4 "register_operand" "r")))] "TARGET_64BIT" - "sub %2,%3,%%r0\;sub,db %1,%4,%0" + "sub,* %2,%3,%%r0\;sub,db %1,%4,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -991,7 +991,7 @@ (leu:DI (match_operand:DI 2 "register_operand" "r") (match_operand:DI 3 "int11_operand" "I"))))] "TARGET_64BIT" - "addi %k3,%2,%%r0\;sub,db %1,%%r0,%0" + "addi,* %k3,%2,%%r0\;sub,db %1,%%r0,%0" [(set_attr "type" "binary") (set_attr "length" "8")]) @@ -1013,7 +1013,7 @@ (match_operand:DI 3 "int11_operand" "I"))) (match_operand:DI 4 "register_operand" "r")))] "TARGET_64BIT" - "addi %k3,%2,%%r0\;sub,db %1,%4,%0" + "addi,* %k3,%2,%%r0\;sub,db %1,%4,%0" [(set_attr "type" "binary") (set_attr "length" "8")])