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
Fix broken MinGW build of gcc.c
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
alignment7.adb
blob
5a3b8eb43c81f05433dc33b263a6f056e5ee84f6
1
-- { dg-do run }
2
3
with
System
;
4
5
procedure
Alignment7
is
6
7
type
R
is record
8
I
:
Integer
;
9
F
:
Long_Float
;
10
end record
;
11
for
R
'Alignment
use
8
;
12
13
procedure
Q
(
A
:
System
.
Address
)
is
14
F
:
Long_Float
;
15
for
F
'Address
use
A
;
16
begin
17
F
:=
0.0
;
18
end
;
19
20
V
:
R
;
21
22
begin
23
Q
(
V
.
F
'Address
);
24
end
;