This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/53338] [4.8 Regression] Unaligned store generated for aligned data
- From: "ubizjak at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Sun, 13 May 2012 19:26:55 +0000
- Subject: [Bug middle-end/53338] [4.8 Regression] Unaligned store generated for aligned data
- Auto-submitted: auto-generated
- References: <bug-53338-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53338
--- Comment #1 from Uros Bizjak <ubizjak at gmail dot com> 2012-05-13 19:26:55 UTC ---
(In reply to comment #0)
> Following testcase:
>
> --cut here--
> #define SIZE 10240
>
> int b[SIZE], c[SIZE];
> long long __attribute__((__aligned__ (128))) a[SIZE];
This line should read:
long a[SIZE];