[Bug fortran/18109] ICE with explicit array of strings

2005-02-16 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-02-17 01:45 --- Please ignore comment #3, I had the bug number wrong. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18109

[Bug c++/20581] New: Incorrect codegen for exceptions

2005-03-21 Thread dalej at apple dot com
apple dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: i686-linux-pc-gnu GCC host triplet: i686-linux-pc-gnu GCC target triplet: i686-linux-pc-gnu http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20581

[Bug c++/20581] Incorrect codegen for exceptions

2005-03-21 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-03-21 21:49 --- The following is a slightly modified version of g++.dg/eh/omit-frame-pointer2.C. It fails with -O -fomit-frame-pointer -mno-accumulate-outgoing-args -fpic (you need all flags). Basic problem is that there are 24

[Bug c++/20581] Incorrect codegen for exceptions

2005-03-21 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-03-21 21:54 --- (fails similarly on Darwin x86, if anyone cares) -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20581

[Bug middle-end/19650] New: miscompilation of correct code

2005-01-26 Thread dalej at apple dot com
P2 Component: middle-end AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dalej at apple dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: same GCC host triplet: powerpc-apple-darwin8.0.0.b3 GCC target triplet: same http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19650

[Bug middle-end/19650] [4.0 Regression] miscompilation of correct code

2005-01-26 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-01-27 01:21 --- OK, thanks, I'll go fix it. I mostly put it in here in case somebody was working on a dup. -- What|Removed |

[Bug middle-end/19650] [4.0 Regression] miscompiling of array acess of (int)(a==2)

2005-01-31 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-01-31 18:27 --- Fixed by patch above. -- What|Removed |Added Status|ASSIGNED

[Bug tree-optimization/17884] asm 'volatile' is not honored as documented

2005-02-02 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2005-02-02 18:19 --- Actually I adjusted the doc to my satisfaction in this thread: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg01048.html I suppose it's OK to close now. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17884

[Bug tree-optimization/19910] New: ICE with -ftree-loop-linear

2005-02-11 Thread dalej at apple dot com
Status: UNCONFIRMED Severity: normal Priority: P2 Component: tree-optimization AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: dalej at apple dot com CC: gcc-bugs at gcc dot gnu dot org GCC build triplet: powerpc

[Bug tree-optimization/17884] asm 'volatile' is not honored as documented

2004-10-12 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2004-10-12 18:30 --- OK, thanks. From this it appears that the only effect of 'asm volatile' that users can safely rely on is that such an instruction will not be deleted. If this is agreeable to everybody, I will

[Bug rtl-optimization/5738] GCSE missed optimization: common condition instructions

2004-11-04 Thread dalej at apple dot com
--- Additional Comments From dalej at apple dot com 2004-11-04 23:31 --- It does say that, and I expect cases can be constructed where the comment is true, but it is not completely right. When you replace 2 copies of code with 1 copy you are generally making it smaller. Plus, there

[Bug middle-end/25443] -fpic/-fPIC failure in gcc.dg/tree-ssa/loop-3.c

2007-01-12 Thread dalej at apple dot com
--- Comment #4 from dalej at apple dot com 2007-01-12 20:13 --- With pic, the load of the global's address is pulled outside the loop, so the "base" is a register rather than the global. This causes ivopts to represent index*step all in the index field rather than

[Bug middle-end/25443] -fpic/-fPIC failure in gcc.dg/tree-ssa/loop-3.c

2007-01-12 Thread dalej at apple dot com
--- Comment #6 from dalej at apple dot com 2007-01-13 01:32 --- Stuff in --tool_opts from RUNTESTFLAGS goes before the dg-options on the command line, I just tried it. Is there some other way to do it? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25443

[Bug middle-end/25443] -fpic/-fPIC failure in gcc.dg/tree-ssa/loop-3.c

2007-01-15 Thread dalej at apple dot com
--- Comment #8 from dalej at apple dot com 2007-01-15 23:41 --- You are right, thanks. Test case fixed thus in mainline (to be 4.3). http://gcc.gnu.org/ml/gcc-patches/2007-01/msg01266.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25443

[Bug middle-end/25443] -fpic/-fPIC failure in gcc.dg/tree-ssa/loop-3.c

2007-01-15 Thread dalej at apple dot com
--- Comment #9 from dalej at apple dot com 2007-01-15 23:48 --- as per previous comment -- dalej at apple dot com changed: What|Removed |Added Status