From: John David Anglin Date: Thu, 30 Dec 2010 22:01:42 +0000 (+0000) Subject: pa.md: Add ",*" condition to 64-bit add/subtract boolean patterns. X-Git-Tag: releases/gcc-4.3.6~231 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5918c6d3966b10872de13054ece079b2de1d0f61;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: r168355 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d895a58a3823..5056f07c48dc 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-22 John David Anglin Backport from mainline: diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 00d9fa69ccf3..b49da7bc489b 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -988,7 +988,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")]) @@ -1010,7 +1010,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")]) @@ -1033,7 +1033,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")]) @@ -1079,7 +1079,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")]) @@ -1101,7 +1101,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")]) @@ -1123,7 +1123,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")]) @@ -1145,7 +1145,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")]) @@ -1168,7 +1168,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")]) @@ -1190,7 +1190,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")])