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
Preserving locations for variable-uses and constants (PR c++/43486)
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
array5.adb
blob
72a5df821e6cc0637af9e134d64d53ce51b5f1e2
1
-- { dg-do run }
2
-- { dg-options "-O" }
3
4
procedure
Array5
is
5
6
type
myint
is range
0
..
100
_000
;
7
Bla
:
constant
myint
:=
359
;
8
9
type
my_array
is array
(
1
..
2
)
of
myint
;
10
11
type
item
is record
12
Length
:
Integer
;
13
Content
:
my_array
;
14
end record
;
15
16
procedure
create_item
(
M
:
out
item
)
is
17
begin
18
M
.
Length
:=
1
;
19
M
.
Content
:= (
others
=>
Bla
);
20
end
;
21
22
Var
:
item
;
23
24
begin
25
create_item
(
Var
);
26
27
if
Var
.
Length
=
1
28
and then
Var
.
Content
(
1
) =
Bla
29
then
30
null
;
31
else
32
raise
Program_Error
;
33
end if
;
34
end
;