]> code.ossystems Code Review - openembedded-core.git/blob
6a9e1ea5c58fd17a2c13e4208b0e817a38f66486
[openembedded-core.git] /
1 From d3cce0bbf7e327905965f0fae70b04af08bfb64b Mon Sep 17 00:00:00 2001
2 From: krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4>
3 Date: Fri, 15 Apr 2011 12:43:40 +0000
4 Subject: [PATCH 124/200] 2011-04-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
5
6         * config/s390/s390.md (popcountdi2, popcountsi2, popcounthi2):
7         Replace match_operand with match_dup for the third operand in
8         these expanders.
9
10
11
12 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_6-branch@172491 138bc75d-0d04-0410-961f-82ee72b054a4
13
14 index 2d552fb..7639d2d 100644
15 --- a/gcc/config/s390/s390.md
16 +++ b/gcc/config/s390/s390.md
17 @@ -9330,7 +9330,7 @@
18     (parallel [(set (match_dup 0) (plus:DI (match_dup 0) (match_dup 2)))
19               (clobber (reg:CC CC_REGNUM))])
20     ; sllg op2, op0, 16
21 -   (set (match_operand:DI 2 "register_operand" "")
22 +   (set (match_dup 2)
23         (ashift:DI (match_dup 0) (const_int 16)))
24     ; agr op0, op2
25     (parallel [(set (match_dup 0) (plus:DI (match_dup 0) (match_dup 2)))
26 @@ -9352,7 +9352,7 @@
27                               UNSPEC_POPCNT))
28               (clobber (reg:CC CC_REGNUM))])
29     ; sllk op2, op0, 16
30 -   (set (match_operand:SI 2 "register_operand" "")
31 +   (set (match_dup 2)
32         (ashift:SI (match_dup 0) (const_int 16)))
33     ; ar op0, op2
34     (parallel [(set (match_dup 0) (plus:SI (match_dup 0) (match_dup 2)))
35 @@ -9374,7 +9374,7 @@
36                               UNSPEC_POPCNT))
37               (clobber (reg:CC CC_REGNUM))])
38     ; sllk op2, op0, 8
39 -   (set (match_operand:SI 2 "register_operand" "")
40 +   (set (match_dup 2)
41         (ashift:SI (match_dup 0) (const_int 8)))
42     ; ar op0, op2
43     (parallel [(set (match_dup 0) (plus:SI (match_dup 0) (match_dup 2)))
44 -- 
45 1.7.0.4
46