This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug objc/25450] New: Enums are encoded incorrectly
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Dec 2005 17:21:43 -0000
- Subject: [Bug objc/25450] New: Enums are encoded incorrectly
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
Take the following enum:
enum a
{
0, 1, 0x7FFFFFFFFFFFFFFFULL
};
----
it is still encoded as "i" even though its size is the same as "long long".
Trying to fix this the following failures which needs to be fixed:
objc.dg/encode-3.m
objc.dg/type-size-2.m
--
Summary: Enums are encoded incorrectly
Product: gcc
Version: 4.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: objc
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: pinskia at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25450