This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/69505] attribute aligned changes alignment of the same type
- From: "egallager at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Sat, 29 Jul 2017 12:40:22 +0000
- Subject: [Bug c/69505] attribute aligned changes alignment of the same type
- Auto-submitted: auto-generated
- References: <bug-69505-4@http.gcc.gnu.org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69505
Eric Gallager <egallager at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |egallager at gcc dot gnu.org
--- Comment #1 from Eric Gallager <egallager at gcc dot gnu.org> ---
My results:
$ /usr/local/bin/gcc -Wall -Wextra -pedantic -o 69505.exe 69505.c
$ ./69505.exe
1, 1
32, 32
32, 32
$ /usr/local/bin/g++ -Wall -Wextra -pedantic -o 69505++.exe 69505.c
$ ./69505++.exe
1, 1
32, 32
32, 32
$
Did this get fixed or something?