[Bug c++/69549] Named Address Spaces does not compile in C++

2016-05-11 Thread thiago at kde dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #1 from Thiago Macieira --- Bump? Still happening on 7.0 (built 20160502)

[Bug c++/69549] Named Address Spaces does not compile in C++

2017-03-27 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-11-16 Thread jwjagersma at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #8 from jwjagersma at gmail dot com --- Created attachment 51808 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=51808&action=edit basic implementation Tentative patch. Produces working code but could use some (many) checks to d

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-11-19 Thread jwjagersma at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #9 from jwjagersma at gmail dot com --- Created attachment 51840 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=51840&action=edit diagnostics This patch adds checks for: - Top-level AS-qualifiers on fields, local variables, func

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-03-22 Thread thiago at kde dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #4 from Thiago Macieira --- And in GCC 11. gcc version 11.0.1 20210308 (experimental) (GCC)

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-03-22 Thread thiago at kde dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #5 from Thiago Macieira --- BTW, Clang solved this by making __seg_fs, __seg_gs macros that resolve to __attribute__: $ clang -dM -E -xc /dev/null | grep __seg_.s #define __seg_fs __attribute__((address_space(257))) #define __seg_gs

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-03-22 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #6 from Andrew Pinski --- (In reply to Thiago Macieira from comment #5) > BTW, Clang solved this by making __seg_fs, __seg_gs macros that resolve to > __attribute__: > That way, they don't need to be deduced as qualifiers in C, l

[Bug c++/69549] Named Address Spaces does not compile in C++

2021-03-22 Thread thiago at kde dot org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #7 from Thiago Macieira --- (In reply to Andrew Pinski from comment #6) > The above is not the reason why namespaces are not handled in GCC's C++ > front-end. The reason why they are not handled in C++ is because you need > to handle

[Bug c++/69549] Named Address Spaces does not compile in C++

2019-04-10 Thread js at alien8 dot de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 Julian Stecklina changed: What|Removed |Added CC||js at alien8 dot de --- Comment #3 fr

[Bug c++/69549] Named Address Spaces does not compile in C++

2023-11-01 Thread abelay at mit dot edu via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 Adam Belay changed: What|Removed |Added CC||abelay at mit dot edu --- Comment #10 from

[Bug c++/69549] Named Address Spaces does not compile in C++

2023-11-01 Thread xry111 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 Xi Ruoyao changed: What|Removed |Added CC||xry111 at gcc dot gnu.org Keywords

[Bug c++/69549] Named Address Spaces does not compile in C++

2023-11-02 Thread jwjagersma at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 --- Comment #12 from jwjagersma at gmail dot com --- (In reply to Xi Ruoyao from comment #11) > Generally a patch should be sent to gcc-patc...@gcc.gnu.org. See > https://gcc.gnu.org/contribute.html. The patches attached to a Bugzilla > ticket a

[Bug c++/69549] Named Address Spaces does not compile in C++

2023-11-20 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69549 Andrew Pinski changed: What|Removed |Added Severity|normal |enhancement