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
fce8451d
Commit
fce8451d
authored
Jun 05, 2000
by
Richard Henderson
Committed by
Richard Henderson
Jun 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test.
From-SVN: r34418
parent
16a8282c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
+52
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/20000605-1.c
+48
-0
No files found.
gcc/testsuite/ChangeLog
View file @
fce8451d
2000-06-05 Richard Henderson <rth@cygnus.com>
* gcc.c-torture/execute/20000605-1.c: New test.
2000-06-05 Jakub Jelinek <jakub@redhat.com>
2000-06-05 Jakub Jelinek <jakub@redhat.com>
Nathan Sidwell <nathan@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
...
...
gcc/testsuite/gcc.c-torture/execute/20000605-1.c
0 → 100644
View file @
fce8451d
typedef
struct
_RenderInfo
RenderInfo
;
struct
_RenderInfo
{
int
y
;
float
scaley
;
int
src_y
;
};
static
void
bar
(
void
)
{
}
static
int
render_image_rgb_a
(
RenderInfo
*
info
)
{
int
y
,
ye
;
float
error
;
float
step
;
y
=
info
->
y
;
ye
=
256
;
step
=
1
.
0
/
info
->
scaley
;
error
=
y
*
step
;
error
-=
((
int
)
error
)
-
step
;
for
(;
y
<
ye
;
y
++
)
{
if
(
error
>=
1
.
0
)
{
info
->
src_y
+=
(
int
)
error
;
error
-=
(
int
)
error
;
bar
();
}
error
+=
step
;
}
return
info
->
src_y
;
}
int
main
(
void
)
{
RenderInfo
info
;
info
.
y
=
0
;
info
.
src_y
=
0
;
info
.
scaley
=
1
.
0
;
if
(
render_image_rgb_a
(
&
info
)
!=
256
)
abort
();
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