Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e24fa9da
Commit
e24fa9da
authored
Nov 16, 2000
by
Nick Clifton
Committed by
Nick Clifton
Nov 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a couple of new test cases for nested function support.
From-SVN: r37504
parent
68dfd979
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
114 additions
and
0 deletions
+114
-0
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/nestfunc-2.c
+49
-0
gcc/testsuite/gcc.c-torture/execute/nestfunc-3.c
+60
-0
No files found.
gcc/testsuite/ChangeLog
View file @
e24fa9da
2000-11-16 Nick Clifton <nickc@redhat.com>
* gcc.c-torture/execute/nestfunc-2.c: New test.
* gcc.c-torture/execute/nestfunc-3.c: New test.
2000-11-11 Bernd Schmidt <bernds@redhat.co.uk>
* gcc.c-torture/compile/20001116-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/execute/nestfunc-2.c
0 → 100644
View file @
e24fa9da
extern
int
foo
(
int
,
int
,
int
(
*
)
(
int
,
int
,
int
,
int
,
int
,
int
,
int
));
int
z
;
int
main
(
void
)
{
#ifndef NO_TRAMPOLINES
int
sum
=
0
;
int
i
;
int
nested
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
,
int
f
,
int
g
)
{
z
=
c
+
d
+
e
+
f
+
g
;
if
(
a
>
2
*
b
)
return
a
-
b
;
else
return
b
-
a
;
}
for
(
i
=
0
;
i
<
10
;
++
i
)
{
int
j
;
for
(
j
=
0
;
j
<
10
;
++
j
)
{
int
k
;
for
(
k
=
0
;
k
<
10
;
++
k
)
sum
+=
foo
(
i
,
j
>
k
?
j
-
k
:
k
-
j
,
nested
);
}
}
if
(
sum
!=
2300
)
abort
();
if
(
z
!=
0x1b
)
abort
();
#endif
exit
(
0
);
}
int
foo
(
int
a
,
int
b
,
int
(
*
fp
)
(
int
,
int
,
int
,
int
,
int
,
int
,
int
))
{
return
fp
(
a
,
b
,
a
,
b
,
a
,
b
,
a
);
}
gcc/testsuite/gcc.c-torture/execute/nestfunc-3.c
0 → 100644
View file @
e24fa9da
extern
long
foo
(
long
,
long
,
long
(
*
)
(
long
,
long
));
extern
long
use
(
long
(
*
)
(
long
,
long
),
long
,
long
);
int
main
(
void
)
{
#ifndef NO_TRAMPOLINES
long
sum
=
0
;
long
i
;
long
nested_0
(
long
a
,
long
b
)
{
if
(
a
>
2
*
b
)
return
a
-
b
;
else
return
b
-
a
;
}
long
nested_1
(
long
a
,
long
b
)
{
return
use
(
nested_0
,
b
,
a
)
+
sum
;
}
long
nested_2
(
long
a
,
long
b
)
{
return
nested_1
(
b
,
a
);
}
for
(
i
=
0
;
i
<
10
;
++
i
)
{
long
j
;
for
(
j
=
0
;
j
<
10
;
++
j
)
{
long
k
;
for
(
k
=
0
;
k
<
10
;
++
k
)
sum
+=
foo
(
i
,
j
>
k
?
j
-
k
:
k
-
j
,
nested_2
);
}
}
if
(
sum
!=
0xbecfcbf5
)
abort
();
#endif
exit
(
0
);
}
long
use
(
long
(
*
func
)(
long
,
long
),
long
a
,
long
b
)
{
return
func
(
b
,
a
);
}
long
foo
(
long
a
,
long
b
,
long
(
*
func
)
(
long
,
long
))
{
return
func
(
a
,
b
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment