Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: perso...@e-maxx.ru
Created attachment 33091
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33091&action=edit
Full example.
Use of empty brace-initializer in default function a
...@gcc.gnu.org
ReportedBy: perso...@e-maxx.ru
Created attachment 24048
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24048
The entire program
The following program crashes if compiled with -O2:
for (int i=0; i<=1; i++)
for (int j=0; j<=1; j++) {
std::v
AssignedTo: unassig...@gcc.gnu.org
ReportedBy: perso...@e-maxx.ru
Created attachment 24153
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24153
The example program - it should output "ans = 1", but outputs "ans = 0" in -O2
The program attached outputs "
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48837
--- Comment #2 from e-maxx 2011-05-01 06:13:59 UTC ---
It affects even 4.4.3.
...@gcc.gnu.org
ReportedBy: perso...@e-maxx.ru
Created attachment 24387
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24387
The program demostrating the bug (should return 0 if OK, but throws in case of
wrong optimization)
A bug in gcc 4.6.0 optimizer leads to incorrect program f
iority: P3
Component: tree-optimization
AssignedTo: unassig...@gcc.gnu.org
ReportedBy: perso...@e-maxx.ru
Created attachment 24388
--> http://gcc.gnu.org/bugzilla/attachment.cgi?id=24388
The program reads a number, and then it should output it back. After incorrect
optimization,