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
/
handle_and_return.adb
blob
b40dbafb37dd87e22bb313952d850f9dd9d1dc8e
1
-- { dg-do run }
2
-- { dg-options "-gnatp -O2" }
3
4
with
Raise_Ce
;
5
6
procedure
Handle_And_Return
is
7
begin
8
begin
9
Raise_CE
;
10
return
;
11
exception
12
when others
=>
null
;
13
end
;
14
15
begin
16
Raise_CE
;
17
return
;
18
exception
19
when others
=>
null
;
20
end
;
21
end
;