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
fc5f1cca
Commit
fc5f1cca
authored
Jul 27, 2000
by
Hans-Peter Nilsson
Committed by
Jeff Law
Jul 26, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-tortuer/execute/20000726-1.c: New test.
From-SVN: r35279
parent
9f9f0e4f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/20000726-1.c
+31
-0
No files found.
gcc/testsuite/ChangeLog
View file @
fc5f1cca
Wed Jul 26 19:41:51 2000 Hans-Peter Nilsson <hp@axis.com>
* gcc.c-tortuer/execute/20000726-1.c: New test.
2000-07-26 Alexandre Oliva <aoliva@redhat.com>
* gcc.c-torture/execute/enum-2.c: New test.
...
...
gcc/testsuite/gcc.c-torture/execute/20000726-1.c
0 → 100644
View file @
fc5f1cca
void
adjust_xy
(
short
*
,
short
*
);
struct
adjust_template
{
short
kx_x
;
short
kx_y
;
short
kx
;
short
kz
;
};
static
struct
adjust_template
adjust
=
{
0
,
0
,
1
,
1
};
main
()
{
short
x
=
1
,
y
=
1
;
adjust_xy
(
&
x
,
&
y
);
if
(
x
!=
1
)
abort
();
exit
(
0
);
}
void
adjust_xy
(
x
,
y
)
short
*
x
;
short
*
y
;
{
*
x
=
adjust
.
kx_x
*
*
x
+
adjust
.
kx_y
*
*
y
+
adjust
.
kx
;
}
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