[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-27 Thread mmitchel at gcc dot gnu dot org
--- Comment #7 from mmitchel at gcc dot gnu dot org 2006-04-28 02:41 --- Subject: Bug 27292 Author: mmitchel Date: Fri Apr 28 02:40:58 2006 New Revision: 113339 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113339 Log: PR c++/27292 * tree.c (rvalue): Convert

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-27 Thread mmitchel at gcc dot gnu dot org
--- Comment #8 from mmitchel at gcc dot gnu dot org 2006-04-28 02:42 --- Fixed in 4.2. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-25 Thread mueller at gcc dot gnu dot org
--- Comment #6 from mueller at gcc dot gnu dot org 2006-04-25 11:46 --- the original testcase still ICEs. however now in gimplify.c:5492 -- mueller at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-25 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|REOPENED|ASSIGNED http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27292

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread mueller at gcc dot gnu dot org
-- mueller at gcc dot gnu dot org changed: What|Removed |Added CC||mmitchel at gcc dot gnu dot |

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields and enums

2006-04-24 Thread pinskia at gcc dot gnu dot org
-- pinskia at gcc dot gnu dot org changed: What|Removed |Added CC||pinskia at gcc dot gnu dot |

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread reichelt at gcc dot gnu dot org
--- Comment #1 from reichelt at gcc dot gnu dot org 2006-04-24 21:02 --- Confirmed. Even shorter testcase: = struct A { int i : 8; }; bool foo(A a) { return int(a.i); } = -- reichelt at gcc dot gnu dot org changed:

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread pinskia at gcc dot gnu dot org
--- Comment #2 from pinskia at gcc dot gnu dot org 2006-04-24 21:06 --- Most likely you can get rejects valid with (though I have not tried sicne the C style casts just check to see if they can do a static cast, and the rest of the casts and if it cannot, it ICEs): struct A { int i :

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread mmitchel at gcc dot gnu dot org
--- Comment #3 from mmitchel at gcc dot gnu dot org 2006-04-24 23:31 --- Yes, this is the kind of failure mode I feared. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread mmitchel at gcc dot gnu dot org
--- Comment #4 from mmitchel at gcc dot gnu dot org 2006-04-25 03:33 --- Subject: Bug 27292 Author: mmitchel Date: Tue Apr 25 03:33:38 2006 New Revision: 113240 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=113240 Log: PR c++/27292 * typeck.c (decay_conversion):

[Bug c++/27292] [4.2 regression] ICE on casts on bitfields

2006-04-24 Thread mmitchel at gcc dot gnu dot org
--- Comment #5 from mmitchel at gcc dot gnu dot org 2006-04-25 03:38 --- Fixed in 4.2. -- mmitchel at gcc dot gnu dot org changed: What|Removed |Added