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
Use static inline to do the right thing when built in C99 mode. Of course,
[llvm/stm8.git]
/
test
/
FrontendAda
/
array_size.adb
blob
c73616c980798ae811f8a2b9b26676f9e407b2b7
1
-- RUN: %llvmgcc -S %s
2
procedure
Array_Size
is
3
subtype
S
is
String
(
1
..
2
);
4
type
R
is record
5
A
:
S
;
6
end record
;
7
X
:
R
;
8
begin
9
null
;
10
end
;