[Bug web/61992] git web interface handles some paths badly

2017-07-23 Thread galtgendo at o2 dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61992 Rafał Mużyło changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|---

[Bug web/61992] New: git web interface handles some paths badly

2014-08-01 Thread galtgendo at o2 dot pl
Assignee: unassigned at gcc dot gnu.org Reporter: galtgendo at o2 dot pl I don't know, if this is a misconfiguration on your part or a bug in the web frontend, but if I browse from gcc.gnu.org/git to https://gcc.gnu.org/git/?p=gcc.git;a=tree;f=libstdc%2B%2B-v3;h

[Bug web/61992] git web interface handles some paths badly

2014-08-01 Thread galtgendo at o2 dot pl
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61992 --- Comment #1 from Rafał Mużyło galtgendo at o2 dot pl --- ...if there's any confusion, aclocal.m4 is just a random pick

[Bug c/60581] New: gcc doesn't isssue a strict aliasing warning on a code that seems to break it

2014-03-19 Thread galtgendo at o2 dot pl
: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: galtgendo at o2 dot pl The problem is described here: https://bugs.gentoo.org/show_bug.cgi?id=505026 The code to trigger comes from a launchpad bug: https://bugs.launchpad.net

[Bug c++/58174] New: gcc miscompiles code

2013-08-16 Thread galtgendo at o2 dot pl
: unassigned at gcc dot gnu.org Reporter: galtgendo at o2 dot pl Created attachment 30665 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=30665action=edit preprocessed file that miscompiles Using built-in specs. COLLECT_GCC=gcc-4.8.1 COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu

[Bug c++/58174] gcc miscompiles code

2013-08-16 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58174 --- Comment #2 from Rafał Mużyło galtgendo at o2 dot pl --- By miscompiles, in this case I mean there's no error during compilation, but the produced executable fails to work. I'm not very familiar with the code of the project, that this file

[Bug c++/58174] gcc miscompiles code

2013-08-16 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58174 --- Comment #4 from Rafał Mużyło galtgendo at o2 dot pl --- How could I narrow it down then ?

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2013-01-05 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333 --- Comment #30 from Rafał Mużyło galtgendo at o2 dot pl 2013-01-06 02:20:08 UTC --- While 4.7.2 still has the problem, I've just learnt about PR33763. Now, while that particular patch doesn't help 4.7.2 - even it it sounds like it should

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2013-01-05 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333 --- Comment #31 from Rafał Mużyło galtgendo at o2 dot pl 2013-01-06 03:34:17 UTC --- PS: the stripped down test case from PR33763 is quite alike attachment 25239, yet something makes a difference. extern void *bar (void); extern int baz (void

[Bug c++/53707] compiler generates wrong code

2012-07-02 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #11 from Rafał Mużyło galtgendo at o2 dot pl 2012-07-02 19:38:29 UTC --- OK, I don't know if it's related, but https://bugs.gentoo.org/show_bug.cgi?id=424475 and its follow-up http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11845

[Bug c++/53707] compiler generates wrong code

2012-07-02 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #13 from Rafał Mużyło galtgendo at o2 dot pl 2012-07-02 20:25:12 UTC --- As I said, it might not be related, but it's a bit odd, that both gcc versions agree *and* it's also about inlining.

[Bug c++/53707] compiler generates wrong code

2012-06-18 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #5 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-18 09:46:17 UTC --- The wrong code here seems to be 'n' treated as a constant - there was a bug (regarding freeciv, IIRC) of a similar case for an older gcc version. As for gcc

[Bug c++/53707] compiler generates wrong code

2012-06-18 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #9 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-18 10:43:50 UTC --- The code is not mine and it's about as convoluted (if not more) as freeciv was (that was the *initial* part of bug 39333 - the upstream workaround was http

[Bug c++/53707] compiler generates wrong code

2012-06-18 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #10 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-18 11:13:20 UTC --- Now, for an interesting note: if instead of 'string test(n);' I put 'printf(%d\n, n);', not only the bug *still* happens, but the result if funny: first a '0

[Bug c++/53707] New: compiler generates wrong code

2012-06-17 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 Bug #: 53707 Summary: compiler generates wrong code Classification: Unclassified Product: gcc Version: 4.6.3 Status: UNCONFIRMED Severity: normal Priority: P3

[Bug c++/53707] compiler generates wrong code

2012-06-17 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #1 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-17 13:03:27 UTC --- Created attachment 27642 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=27642 -Wall warnings Attaching '-Wall' warnings for completeness. Note, that gcc

[Bug c++/53707] compiler generates wrong code

2012-06-17 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 --- Comment #2 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-17 13:05:20 UTC --- Created attachment 27643 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=27643 preprocessed sources triggering the bug

[Bug c++/53707] compiler generates wrong code

2012-06-17 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53707 Rafał Mużyło galtgendo at o2 dot pl changed: What|Removed |Added Attachment #27643|0 |1

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2012-06-17 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333 --- Comment #29 from Rafał Mużyło galtgendo at o2 dot pl 2012-06-17 13:17:36 UTC --- gcc 4.7.1 still shows inconsistent behavior with attachment 25239.

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-25 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 Rafał Mużyło galtgendo at o2 dot pl changed: What|Removed |Added Status|RESOLVED|UNCONFIRMED

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-25 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #9 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-25 13:33:42 UTC --- What I'm trying to say is that gcc should either: - accept the code even with -fno-ipa-cp - reject the code even with -fipa-cp - print better diagnostics

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-25 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #10 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-25 13:51:14 UTC --- So, I ran one more test: gcc-4.6.1 -O2 -Wall -c -o fprintf-mini-bug-4.6.o fprintf-mini-bug-4.6.i -fno-align-functions -fno-align-jumps -fno-align-labels -fno

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-25 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #12 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-25 18:02:58 UTC --- (In reply to comment #11) Does the WONTFIX resolution here mean that glibc will need a fix then ?

[Bug c/50506] New: gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 Bug #: 50506 Summary: gcc fails at assembly with -O1 while inlining is forced Classification: Unclassified Product: gcc Version: 4.6.1 Status: UNCONFIRMED

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 Rafał Mużyło galtgendo at o2 dot pl changed: What|Removed |Added Attachment #25354|0 |1

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 Rafał Mużyło galtgendo at o2 dot pl changed: What|Removed |Added Attachment #25355|0 |1

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #3 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-24 13:17:59 UTC --- OK, that's a bit surprising, -fipa-cp does help for attachment from comment 1, but not for my final reduction - removing the attribute still works there, though.

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #4 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-24 13:38:47 UTC --- Well,... The actual result was quite a bit more interesting, cause: Using built-in specs. COLLECT_GCC=/usr/i686-pc-linux-gnu/gcc-bin/4.5.3/gcc COLLECT_LTO_WRAPPER

[Bug c/50506] gcc fails at assembly with -O1 while inlining is forced

2011-09-24 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50506 --- Comment #6 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-24 16:05:20 UTC --- So, whose bug is it then ? glibc ? cause before reduction, the code was (http://bugs.gentoo.org/show_bug.cgi?id=365015): #include stdio.h static void w_i(void

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2011-09-11 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333 Rafał Mużyło galtgendo at o2 dot pl changed: What|Removed |Added Attachment #25238|0 |1

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2011-09-10 Thread galtgendo at o2 dot pl
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333 --- Comment #27 from Rafał Mużyło galtgendo at o2 dot pl 2011-09-11 03:40:16 UTC --- Created attachment 25238 -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=25238 prepocessed code of possibly related failure in gcc 4.6.1 OK, I'm not sure

[Bug c/42199] A problem with -maltivec

2010-02-21 Thread galtgendo at o2 dot pl
--- Comment #3 from galtgendo at o2 dot pl 2010-02-21 21:22 --- There's new input in a different Gentoo bug: http://bugs.gentoo.org/show_bug.cgi?id=305333 Apparently in certain conditions on ppc, bool is both defined and undefined. Unless you'll see that as bad code on openjpeg side

[Bug c/42199] A problem with -maltivec

2010-01-03 Thread galtgendo at o2 dot pl
--- Comment #2 from galtgendo at o2 dot pl 2010-01-03 16:46 --- Created an attachment (id=19452) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=19452action=view) preprocessed sources Finally I've got a response in the Gentoo bug. Info: Using built-in specs. Target: powerpc-unknown

[Bug c/42199] New: A problem with -maltivec

2009-11-27 Thread galtgendo at o2 dot pl
: UNCONFIRMED Severity: normal Priority: P3 Component: c AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: galtgendo at o2 dot pl http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42199

[Bug other/40623] New: variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
: other AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: galtgendo at o2 dot pl http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40623

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #1 from galtgendo at o2 dot pl 2009-07-02 18:02 --- Created an attachment (id=18124) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18124action=view) a testcase for the bug As I said in the Gentoo bug, one version of the 'area' line produces correct result, other does

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #2 from galtgendo at o2 dot pl 2009-07-02 18:05 --- Due to that 'printf' thing, it seems vaguely similar to bug 39333, however here neither of the switches mentioned there has an effect. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40623

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #3 from galtgendo at o2 dot pl 2009-07-02 18:08 --- Created an attachment (id=18125) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18125action=view) data for the test -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40623

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #5 from galtgendo at o2 dot pl 2009-07-02 20:33 --- It definitely doesn't work in 4.3.3. I'll attach generated assembly. -- galtgendo at o2 dot pl changed: What|Removed |Added

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #6 from galtgendo at o2 dot pl 2009-07-02 20:35 --- Created an attachment (id=18127) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18127action=view) this is correct assembly ...when 'printf' and '(x0*(y0+dy) - (x0+dx)*y0)' -- http://gcc.gnu.org/bugzilla

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #7 from galtgendo at o2 dot pl 2009-07-02 20:37 --- Created an attachment (id=18128) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=18128action=view) this is the incorrect one ...with 'printf' and 'x0*y1-x1*y0' Both with '-O2' (though -0 is enough). -- http

[Bug other/40623] variable seems to be optimised out incorrectly

2009-07-02 Thread galtgendo at o2 dot pl
--- Comment #8 from galtgendo at o2 dot pl 2009-07-02 20:42 --- Though perhaps I didn't need to reopen. Just making sure: could you reproduce it with one of the mentioned versions ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40623

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-04-21 Thread galtgendo at o2 dot pl
--- Comment #20 from galtgendo at o2 dot pl 2009-04-22 00:04 --- Created an attachment (id=17669) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=17669action=view) prepocessed source of id.c People, I've got a result, that's either very funny or very not funny. With the same

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-04-21 Thread galtgendo at o2 dot pl
--- Comment #21 from galtgendo at o2 dot pl 2009-04-22 00:23 --- Well, with 4.4.0 id.c compiles correctly in both cases. Let's check the harder part. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-04-21 Thread galtgendo at o2 dot pl
--- Comment #22 from galtgendo at o2 dot pl 2009-04-22 01:08 --- Well, gcc 4.4.0 works without '-fno-inline-small-functions' for freeciv too. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-04-21 Thread galtgendo at o2 dot pl
--- Comment #23 from galtgendo at o2 dot pl 2009-04-22 01:15 --- comment 22 was of course about '-fno-guess-branch-probability', not the other one. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-07 Thread galtgendo at o2 dot pl
--- Comment #18 from galtgendo at o2 dot pl 2009-03-07 14:06 --- Well, I've got bad news for you anyway: it seems that the problem affects gcc-4.3.2 too: it seems it's reproducible in another app, however one potentially much harder to debug. Please read http://bugs.winehq.org

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-06 Thread galtgendo at o2 dot pl
--- Comment #16 from galtgendo at o2 dot pl 2009-03-07 04:30 --- OK, I've done a little test and I'd like to know, if it's results actually mean anything: I've compiled freeciv with CFLAGS=-O2 -finline-functions -fno-guess-branch-probability and it did not crash. Does the above confirm

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-03 Thread galtgendo at o2 dot pl
--- Comment #11 from galtgendo at o2 dot pl 2009-03-03 15:15 --- Changing those two to unsigned doesn't help (I have checked that even before comment 8). Actually, I changed a few ints to unsigned wherever it looked sane for this file and it still crashed. What's more, '-O1' works

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-03 Thread galtgendo at o2 dot pl
--- Comment #12 from galtgendo at o2 dot pl 2009-03-03 16:17 --- OK, a (perhaps) interesting result: '-fno-guess-branch-probability' works too, but as first to work was '-fno-inline-small-functions', this may simply be a case of this option making code big enough to hit inlining limit

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-03 Thread galtgendo at o2 dot pl
--- Comment #13 from galtgendo at o2 dot pl 2009-03-03 16:22 --- On a not really related note: output of 'gcc -Q -O1 --help=optimizers' is quite inconsistent with the manpage. Among others, -finline-small-functions according to the manpage is turned on for -O1, -Q output claims

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-03 Thread galtgendo at o2 dot pl
--- Comment #15 from galtgendo at o2 dot pl 2009-03-03 21:13 --- It's a runtime error and there's no real testcase, as, for the time being, it's hard to say what exactly goes wrong. The only real analysis is in the upstream bug, but it's nothing conclusive (at least it doesn't seem

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-02 Thread galtgendo at o2 dot pl
--- Comment #3 from galtgendo at o2 dot pl 2009-03-02 21:56 --- I'll check, but, as summary suggests (indirectly), '-O2 -fno-inline-small-functions' works just fine. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-02 Thread galtgendo at o2 dot pl
--- Comment #4 from galtgendo at o2 dot pl 2009-03-02 22:20 --- Well, neither helps. As a sidenote: 'gcc -Q -O2 --help=optimizers' fails to list '-fstrict-overflow', -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-02 Thread galtgendo at o2 dot pl
--- Comment #6 from galtgendo at o2 dot pl 2009-03-03 00:20 --- (In reply to comment #5) But that just enables more inlining. The problem is most likely somewhere else. If so, why does '-O2' fail and '-O2 -fno-inline-small-functions' work ? -- http://gcc.gnu.org/bugzilla

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-02 Thread galtgendo at o2 dot pl
--- Comment #8 from galtgendo at o2 dot pl 2009-03-03 03:23 --- OK, we seem to misunderstand each other. Anyway, as '-Wall -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations' was set for all files during build and there were no warnings, the problem is probably

[Bug middle-end/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-02 Thread galtgendo at o2 dot pl
--- Comment #9 from galtgendo at o2 dot pl 2009-03-03 03:43 --- BTW, this is the workaround, that upstream created: http://svn.gna.org/viewcvs/freeciv/trunk/common/aicore/cm.c?rev=15556view=diffr1=15556r2=1p1=trunk/common/aicore/cm.cp2=/trunk/common/aicore/cm.c -- http

[Bug c/39333] New: gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-01 Thread galtgendo at o2 dot pl
AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: galtgendo at o2 dot pl http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug c/39333] gcc 4.3.3 miscompiles when -finline-small-functions is used

2009-03-01 Thread galtgendo at o2 dot pl
--- Comment #1 from galtgendo at o2 dot pl 2009-03-01 18:19 --- Created an attachment (id=17381) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=17381action=view) preprocessed file -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39333

[Bug middle-end/34572] program that built with 4.1.2 fails with 4.2.2

2008-03-17 Thread galtgendo at o2 dot pl
--- Comment #10 from galtgendo at o2 dot pl 2008-03-17 18:34 --- Well, gcc 4.3.0 seems to work fine. A clean compilation. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug middle-end/34572] program that built with 4.1.2 fails with 4.2.2

2008-02-23 Thread galtgendo at o2 dot pl
--- Comment #7 from galtgendo at o2 dot pl 2008-02-23 20:17 --- Well, shortly after I reported this bug hardware got upgraded (it was Christmas). Now it's 512MB and gcc 4.2.3. It still fails. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug middle-end/34572] program that built with 4.1.2 fails with 4.2.2

2008-01-02 Thread galtgendo at o2 dot pl
--- Comment #6 from galtgendo at o2 dot pl 2008-01-03 01:05 --- To make earlier comment clear: yes, I agree that it's most probably running out of memory. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug c++/34572] New: program that built with 4.1.2 fails with 4.2.2

2007-12-24 Thread galtgendo at o2 dot pl
Product: gcc Version: 4.2.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: galtgendo at o2 dot pl http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug c++/34572] program that built with 4.1.2 fails with 4.2.2

2007-12-24 Thread galtgendo at o2 dot pl
--- Comment #1 from galtgendo at o2 dot pl 2007-12-24 18:34 --- Sorry, it's much too big, where can I put it, so it can be seen here ? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug c++/34572] program that built with 4.1.2 fails with 4.2.2

2007-12-24 Thread galtgendo at o2 dot pl
--- Comment #2 from galtgendo at o2 dot pl 2007-12-24 18:55 --- Created an attachment (id=14820) -- (http://gcc.gnu.org/bugzilla/attachment.cgi?id=14820action=view) preprocessed file (packed) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572

[Bug middle-end/34572] program that built with 4.1.2 fails with 4.2.2

2007-12-24 Thread galtgendo at o2 dot pl
--- Comment #5 from galtgendo at o2 dot pl 2007-12-24 23:22 --- Correct, 192MB. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34572