https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90674
--- Comment #1 from Sergey Barannikov ---
Can be further simplified to just
template
struct C {
C() {}
};
template<>
C::C() = default;
with the same result.
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
Thie is a regression introduced in 7.1.
$ cat test.cpp
#include
struct Base {
virtual ~Base() = default;
};
template
struct Derived : Base {
Derived
: normal
Priority: P3
Component: libquadmath
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
The testcase:
#include
#include
#include
int main ()
{
union {
__float128 f;
uint64_t i64[2];
} u
++
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
Hi,
There are two internal implementations of std::find_if in bits/stl_algo.h. One
is for the input iterator case, the other is for the random access iterator
case. They are
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
According to documentation, __builtin_cpu_init has return type 'void', but is
created as returning 'int'.
gcc/config/i386/i386.c
static void
ix86_init_platform
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55918
Sergey Barannikov changed:
What|Removed |Added
CC||barannikov88 at gmail dot com
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
The variable __x declared at line 1699 of file
libstdc++-v3/include/bits/random.tcc may be used uninitialized. This happens
when
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67448
Sergey Barannikov changed:
What|Removed |Added
Status|RESOLVED|CLOSED
--- Comment #5 from Sergey Ba
ty: normal
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: barannikov88 at gmail dot com
Target Milestone: ---
$ cat t1.c
void f(int i)
{
__asm("" : : "m"(i += 1));
}
$gcc t1.c -S
t1.c: In function 'f'