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
74cbdffa
Commit
74cbdffa
authored
Jun 08, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Jun 07, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/execute/980608-1.c: New test.
From-SVN: r20321
parent
58151436
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/980608-1.c
+36
-0
No files found.
gcc/testsuite/ChangeLog
View file @
74cbdffa
Mon Jun 8 02:13:42 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/980608-1.c: New test.
Thu Jun 4 01:39:24 1998 Jeffrey A Law (law@cygnus.com)
Thu Jun 4 01:39:24 1998 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/980604-1.c: New test.
* gcc.c-torture/execute/980604-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/execute/980608-1.c
0 → 100644
View file @
74cbdffa
#include <stdarg.h>
void
f1
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
,
int
f
,
int
g
,
int
h
,
int
i
,
int
j
,
int
k
,
int
l
,
int
m
,
int
n
,
int
o
)
{
return
;
}
inline
void
debug
(
const
char
*
msg
,...)
{
va_list
ap
;
va_start
(
ap
,
msg
);
f1
(
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
);
if
(
va_arg
(
ap
,
int
)
!=
101
)
abort
();
if
(
va_arg
(
ap
,
int
)
!=
102
)
abort
();
if
(
va_arg
(
ap
,
int
)
!=
103
)
abort
();
if
(
va_arg
(
ap
,
int
)
!=
104
)
abort
();
if
(
va_arg
(
ap
,
int
)
!=
105
)
abort
();
if
(
va_arg
(
ap
,
int
)
!=
106
)
abort
();
va_end
(
ap
);
}
int
main
(
void
)
{
debug
(
"%d %d %d %d %d %d
\n
"
,
101
,
102
,
103
,
104
,
105
,
106
);
exit
(
0
);
}
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