repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Corrected date in changelog
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
alignment8.adb
blob
06136c36e0e5484cf4c5d642c1b3cdacc2ee2447
1
-- { dg-do run }
2
3
with
System
;
4
5
procedure
Alignment8
is
6
7
type
R
is record
8
I
:
Integer
;
9
F
:
Long_Long_Integer
;
10
end record
;
11
for
R
'Alignment
use
8
;
12
13
procedure
Q
(
A
:
System
.
Address
)
is
14
F
:
Long_Long_Integer
;
15
for
F
'Address
use
A
;
16
begin
17
F
:=
0
;
18
end
;
19
20
V
:
R
;
21
22
begin
23
Q
(
V
.
F
'Address
);
24
end
;