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: copy more of scheduler from Go 1.7 runtime
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
inline4_pkg.adb
blob
cd01eda4f3340adaf0fd288ba3c1b9deac78338f
1
package body
Inline4_Pkg
is
2
3
procedure
Test
(
I
:
Integer
)
is
4
5
function
F
(
J
:
Integer
)
return
Integer
is
6
begin
7
return
I
-
J
;
8
end
;
9
pragma
Inline_Always
(
F
);
10
11
begin
12
if
I
/=
F
(
I
)
then
13
raise
Program_Error
;
14
end if
;
15
end
;
16
17
end
Inline4_Pkg
;