This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/47947] Varibles of type vector double are not copied correctly in gcc-4.5.1 and gcc-4.6.0
- From: "pthaugen at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 2 Mar 2011 23:02:01 +0000
- Subject: [Bug target/47947] Varibles of type vector double are not copied correctly in gcc-4.5.1 and gcc-4.6.0
- Auto-submitted: auto-generated
- References: <bug-47947-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47947
Pat Haugen <pthaugen at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|--- |4.6.0
--- Comment #7 from Pat Haugen <pthaugen at gcc dot gnu.org> 2011-03-02 23:01:59 UTC ---
-fpic/-fPIC don't cause a failure on Linux either. I consistently get the
following output no matter what I've tried.
[pthaugen@ltcgranola3p01 hmmer]$ a.out
DEBUG:: u_in0 = <1.000000,2.000000,3.000000,4.000000>
DEBUG:: u_in1 = <5.000000,6.000000,7.000000,8.000000>
DEBUG::foo:: l_temp0 = <1.000000,2.000000,3.000000,4.000000>
DEBUG::foo:: l_temp1 = <5.000000,6.000000,7.000000,8.000000>
DEBUG::foo:: in0 HI = <1.000000,2.000000>
DEBUG::foo:: in0 LO = <3.000000,4.000000>
DEBUG::foo:: in1 HI = <5.000000,6.000000>
DEBUG::foo:: in1 LO = <7.000000,8.000000>
DEBUG::foo:: l_result HI = <6.000000,8.000000>
DEBUG::foo:: l_result LO = <10.000000,12.000000>
DEBUG::foo:: result:: l_temp2 = <6.000000,8.000000,10.000000,12.000000>
DEBUG:: u_out = <6.000000,8.000000,10.000000,12.000000>