repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendAda
/
non_bitfield.ads
blob
8f5845adb4316ba5e77bd5568b6ae41181ef9845
1
-- RUN: %llvmgcc -c %s
2
package
Non_Bitfield
is
3
type
SP
is access
String
;
4
type
E
is
(
A
,
B
,
C
);
5
type
T
(
D
:
E
)
is record
6
case
D
is
7
when
A
=>
X
:
Boolean
;
8
when
B
=>
Y
:
SP
;
9
when
C
=>
Z
:
String
(
1
..
2
);
10
end case
;
11
end record
;
12
end
;