[Bug c/39712] [4.5 Regression] type mismatch in address expression

2009-04-11 Thread rguenth at gcc dot gnu dot org
--- Comment #5 from rguenth at gcc dot gnu dot org 2009-04-11 07:44 --- Fixed. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug c/39712] [4.5 Regression] type mismatch in address expression

2009-04-11 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2009-04-11 07:33 --- Subject: Bug 39712 Author: rguenth Date: Sat Apr 11 07:32:52 2009 New Revision: 145950 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=145950 Log: 2009-04-11 Richard Guenther PR c/39712 *

[Bug c/39712] [4.5 Regression] type mismatch in address expression

2009-04-10 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2009-04-10 08:56 --- Reduced testcase: int is_table[2][16]; int is_table_lsf[2][2][16]; void compute_stereo() { int (*is_tab)[16]; is_tab = is_table; } interestingly removing the unrelated is_table_lsf decl makes the error go a

[Bug c/39712] [4.5 Regression] type mismatch in address expression

2009-04-10 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2009-04-10 08:18 --- Likely due to my patch. I'll have a look. -- rguenth at gcc dot gnu dot org changed: What|Removed |Added --