[Bug c++/111759] New: __FLT_HAS_INFINITY__ has value 1 even when -ffinite-math-only is used.

2023-10-10 Thread Zahira.Ammarguellat at intel dot com via Gcc-bugs
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: Zahira.Ammarguellat at intel dot com Target Milestone: --- Not sure if this is a bug but would like community feedback. In https://godbolt.org/z/fqMdqfM7n we see

[Bug c/106117] New: Use of option -fexcess-precision for operation-by-operation emulation for _Float16 arithmetics.

2022-06-28 Thread Zahira.Ammarguellat at intel dot com via Gcc-bugs
Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: Zahira.Ammarguellat at intel dot com Target Milestone: --- We are adding in Clang the support of '_Float16' on X86 targets with SSE2

[Bug libstdc++/94213] doesn

2020-03-18 Thread Zahira.Ammarguellat at intel dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94213 Zahira Ammarguellat changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug libstdc++/94213] New: doesn

2020-03-18 Thread Zahira.Ammarguellat at intel dot com
: unassigned at gcc dot gnu.org Reporter: Zahira.Ammarguellat at intel dot com Target Milestone: ---

[Bug c++/84030] New: Name lookup in presence of namespace

2018-01-24 Thread Zahira.Ammarguellat at intel dot com
++ Assignee: unassigned at gcc dot gnu.org Reporter: Zahira.Ammarguellat at intel dot com Target Milestone: --- In the code snippet below gcc doesn't give any diagnostics: struct A_ { }; namespace N_ { struct A_ { int g() { return 3; } template operator T

[Bug c++/83777] Invalid dependent initialization of a static data member.

2018-01-11 Thread Zahira.Ammarguellat at intel dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83777 --- Comment #2 from Zahira Ammarguellat --- >From my understanding, the test case is trying to instantiate "C" with "void *" type, which doesn't have a member called "M". I think this should generate an error? Clang and MSVC both give an

[Bug c++/83777] New: Invalid dependent initialization of a static data member.

2018-01-10 Thread Zahira.Ammarguellat at intel dot com
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: Zahira.Ammarguellat at intel dot com Target Milestone: --- Reproducer: template class C { static const int BlockSize = T::M; public: static const int type = 1; }; int foo