This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/14755] [3.4 regression] miscompilation in bitfielded signed integers
- From: "falk at debian dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Mar 2004 16:30:33 -0000
- Subject: [Bug middle-end/14755] [3.4 regression] miscompilation in bitfielded signed integers
- References: <20040327161841.14755.mueller@kde.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From falk at debian dot org 2004-03-27 16:30 -------
Confirmed. A simple C test case is:
int main() {
struct { int count: 31; } s = { 0 };
while (s.count--)
abort();
}
I see this in 3.3.3 too, but not 2.95...
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|c++ |middle-end
Ever Confirmed| |1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14755