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
35676551
Commit
35676551
authored
May 23, 1999
by
Jeffrey A Law
Committed by
Jeff Law
May 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/990524-1.c: New test.
From-SVN: r27114
parent
9208b154
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
0 deletions
+42
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/990524-1.c
+38
-0
No files found.
gcc/testsuite/ChangeLog
View file @
35676551
Mon May 24 00:01:52 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990524-1.c: New test.
Sun May 23 21:18:12 1999 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* gcc.c-torture/compile/990523-1.c: New test.
...
...
gcc/testsuite/gcc.dg/990524-1.c
0 → 100644
View file @
35676551
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-O2 -march=pentiumpro" } */
typedef
struct
t_anim_info
{
char
*
new_filename
;
long
first_frame_nr
;
}
t_anim_info
;
static
int
p_frames_to_multilayer
(
t_anim_info
*
ainfo_ptr
,
long
range_from
,
long
range_to
)
{
long
l_cur_frame_nr
;
long
l_step
,
l_begin
,
l_end
;
int
l_tmp_image_id
;
int
l_new_image_id
;
if
(
range_from
>
range_to
)
{
l_step
=
-
1
;
if
(
range_to
<
ainfo_ptr
->
first_frame_nr
)
{
l_begin
=
ainfo_ptr
->
first_frame_nr
;
}
}
else
{
l_step
=
1
;
}
l_cur_frame_nr
=
l_begin
;
while
(
1
)
{
if
(
ainfo_ptr
->
new_filename
==
((
void
*
)
0
)
)
if
(
l_tmp_image_id
<
0
)
gimp_image_delete
(
l_tmp_image_id
);
if
(
l_cur_frame_nr
==
l_end
)
break
;
l_cur_frame_nr
+=
l_step
;
}
}
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