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
adc66eda
Commit
adc66eda
authored
Mar 26, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Mar 26, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New tests
From-SVN: r32746
parent
28ff5bfb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
0 deletions
+41
-0
gcc/testsuite/gcc.c-torture/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/compile/20000326-1.c
+23
-0
gcc/testsuite/gcc.c-torture/compile/20000326-2.c
+13
-0
No files found.
gcc/testsuite/gcc.c-torture/ChangeLog
View file @
adc66eda
2000-03-26 Bernd Schmidt <bernds@cygnus.co.uk>
* compile/20000326-1.c: New test.
* compile/20000326-2.c: New test.
2000-03-24 Geoff Keating <geoffk@cygnus.com>
2000-03-24 Geoff Keating <geoffk@cygnus.com>
* execute/va-arg-14.c: New test for va_start where the first
* execute/va-arg-14.c: New test for va_start where the first
...
...
gcc/testsuite/gcc.c-torture/compile/20000326-1.c
0 → 100644
View file @
adc66eda
long
sys_reboot
(
int
magic1
,
int
magic2
,
int
cmd
,
void
*
arg
)
{
switch
(
cmd
)
{
case
0x89ABCDEF
:
break
;
case
0x00000000
:
break
;
case
0xCDEF0123
:
break
;
case
0x4321FEDC
:
break
;
case
0xA1B2C3D4
:
break
;
default:
break
;
};
return
0
;
}
gcc/testsuite/gcc.c-torture/compile/20000326-2.c
0 → 100644
View file @
adc66eda
#ifndef NO_LABEL_VALUES
extern
int
printk
(
const
char
*
fmt
,
...);
void
foo
(
int
x
,
int
y
)
{
__label__
here
;
here:
printk
(
""
,
&&
here
);
}
#else
int
x
;
#endif
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