This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/52407] [4.6 Regression] sse2 simd uint32_t and int64_t and stack variable initialization
- From: "pcpa at mandriva dot com.br" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 29 Feb 2012 17:54:34 +0000
- Subject: [Bug target/52407] [4.6 Regression] sse2 simd uint32_t and int64_t and stack variable initialization
- Auto-submitted: auto-generated
- References: <bug-52407-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52407
Paulo CÃsar Pereira de Andrade <pcpa at mandriva dot com.br> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--- Comment #9 from Paulo CÃsar Pereira de Andrade <pcpa at mandriva dot com.br> 2012-02-29 17:54:34 UTC ---
(In reply to comment #7)
> Fixed on trunk. I'll backport it for 4.6.4 as it is latent on the branches.
Thanks. I reported the problem because I thought it could
hit somewhere else and I have some code that way, that was
working since gcc 4.4, but the proper syntax to initialize
the local variable should be, in the sample test case:
vl_t w = {x,x};
what should make it easier for the compiler to understand
what is being done.