This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug bootstrap/17099] Bootstrap failure on powerpc64-redhat-linux


------- Additional Comments From jakub at gcc dot gnu dot org  2004-08-19 14:10 -------
The problem seems to be that during combine simplify-rtx.c "simplifies":
(sign_extend:DI (ior:SI (lshiftrt:SI (reg:SI 125)
            (const_int 31 [0x1f]))
        (subreg/s:SI (reg:DI 134 [ iftmp.1 ]) 4)))
into:
(ior:DI (and:DI (lshiftrt:DI (subreg:DI (reg:SI 125) 0)
            (const_int 31 [0x1f]))
        (const_int 3 [0x3]))
    (reg:DI 134 [ iftmp.1 ]))

It is not 2 bits but one bit that should be ored into.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17099


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]