-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Closed
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaconfirmedVerified by a second partyVerified by a second partyobsoleteIssues with old (unsupported) versions of LLVMIssues with old (unsupported) versions of LLVM
Description
| Bugzilla Link | 1981 |
| Version | trunk |
| OS | Linux |
| Reporter | LLVM Bugzilla Contributor |
Extended Description
The Ada front-end expects the back-end to handle bitfields of
arbitrary type. In the following example, a bitfield of struct type:
package Bit_Struct is
type R is record
A : Integer;
B : String (1 .. 3);
end record;
type S is record
An_R : R;
end record;
for S use record
An_R at 0 range 4 .. 60;
end record;
An_S : constant S := (An_R => (A => 0, B => "Yo!"));
end;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaconfirmedVerified by a second partyVerified by a second partyobsoleteIssues with old (unsupported) versions of LLVMIssues with old (unsupported) versions of LLVM