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
b516907f
Commit
b516907f
authored
Feb 10, 2002
by
Kazu Hirata
Committed by
Kazu Hirata
Feb 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/20020210-1.c: New.
From-SVN: r49657
parent
232bd029
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/20020210-1.c
+28
-0
No files found.
gcc/testsuite/ChangeLog
View file @
b516907f
2002-02-10 Kazu Hirata <kazu@hxi.com>
* gcc.dg/20020210-1.c: New.
2002-02-09 Toon Moene <toon@moene.indiv.nluug.nl>
* g77.f-torture/execute/947.f: New regression test
...
...
gcc/testsuite/gcc.dg/20020210-1.c
0 → 100644
View file @
b516907f
/* This used fail on H8/300 due to incorrect specification of pushi1. */
/* { dg-do run } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -fomit-frame-pointer" { target h8300-*-* } } */
extern
void
abort
(
void
);
extern
void
exit
(
int
);
void
bar
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
)
{
if
(
d
!=
1
)
abort
();
}
void
foo
(
int
a
,
int
b
,
int
c
,
int
d
,
int
e
)
{
bar
(
a
,
b
,
c
,
d
,
e
);
}
int
main
()
{
foo
(
0
,
0
,
0
,
1
,
2
);
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