repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make the asmparser reject function and type redefinitions. 'Merging' hasn't been
[llvm/stm8.git]
/
test
/
FrontendAda
/
non_bitfield.ads
blob
8a49d46f6b4286db0f86e6c870681cd1f3594047
1
-- RUN: %llvmgcc -S %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
;