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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
unreferenced.adb
blob
5b047c26a613da54442b0d041aece4196c399faf
1
-- { dg-do compile }
2
-- { dg-options "-gnatd.F" }
3
4
procedure
Unreferenced
is
5
X
:
aliased
Integer
;
6
Y
:
access
Integer
:=
X
'Access
;
7
Z
:
Integer
renames
Y
.
all
;
8
pragma
Unreferenced
(
Z
);
9
begin
10
null
;
11
end
Unreferenced
;