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
runtime: allow preemption in fast syscall return
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
max_align.adb
blob
702bbaca4492e8d59560d5fcf38d95dfc07ee6c7
1
-- { dg-do compile }
2
3
procedure
Max_Align
is
4
type
Block
is record
5
X
:
Integer
;
6
end record
;
7
for
Block
'Alignment
use
Standard
'Maximum_Alignment
;
8
9
type
Block_Access
is access
Block
;
10
Ptr
:
Block_Access
:=
new
Block
;
11
begin
12
null
;
13
end
;
14
15