Severity: normal
Priority: P3
Component: libstdc++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
I have observed a regression in std::regex_search when the regex object has
flags grep | icase and is multi
Priority: P3
Component: c
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
gcc -fopenmp t.c && ./a.out; echo $? on the following file produces unexpected
values.
t.c:
#define aN 2
int main(int argc, ch
++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
std::call_once is not C++11 (or even N2447) compliant on ppc64le.
According to N2447, "If the invocation of func results in an exception being
thrown, the excepti
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66146
--- Comment #2 from Andrey V ---
Replacing throw/try/catch with longjmp/setjmp for non-returning function exit,
like so:
#include
#include
#include
pthread_once_t flag_ = PTHREAD_ONCE_INIT;
int call_count = 0;
jmp_buf catch_;
void func_()
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66146
--- Comment #6 from Andrey V ---
Same failure on s390x.
: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
The test case
// begin test.cc
struct S {
constexpr virtual int f() { return 1; }
};
// end test.cc
fails to emit a
: 6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
Given
// begin a.cc
int RC = 66;
template void f(C * (*&&
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67752
--- Comment #1 from Andrey V ---
Affects Linux ppc64le and Linux x86_64
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
Given the example
// begin a.cpp
template void f(T...) throw (T&&...) { }
int main() {
f(1, "ab");
}
// end
Version: 4.8.2
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: andrey.vul at gmail dot com
Target Milestone: ---
The presence of an attribute-specifier-seq
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66641
--- Comment #1 from Andrey V ---
Citations for grammar: 7.1 [dcl.spec]; 7.3.4 [namespace.udir]
11 matches
Mail list logo