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
dda2e82c
Commit
dda2e82c
authored
May 06, 1998
by
Jeff Law
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another new test.
From-SVN: r19588
parent
5fe8708c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
gcc/testsuite/gcc.c-torture/compile/980506-1.c
+63
-0
No files found.
gcc/testsuite/gcc.c-torture/compile/980506-1.c
0 → 100644
View file @
dda2e82c
unsigned
char
TIFFFax2DMode
[
20
][
256
];
unsigned
char
TIFFFax2DNextState
[
20
][
256
];
unsigned
char
TIFFFaxUncompAction
[
20
][
256
];
unsigned
char
TIFFFaxUncompNextState
[
20
][
256
];
unsigned
char
TIFFFax1DAction
[
230
][
256
];
unsigned
char
TIFFFax1DNextState
[
230
][
256
];
typedef
struct
tableentry
{
unsigned
short
length
;
unsigned
short
code
;
short
runlen
;
}
tableentry
;
extern
tableentry
TIFFFaxWhiteCodes
[];
extern
tableentry
TIFFFaxBlackCodes
[];
static
short
sp_data
,
sp_bit
;
static
unsigned
char
fetchByte
(
inbuf
)
unsigned
char
**
inbuf
;
{
unsigned
char
byte
=
**
inbuf
;
(
*
inbuf
)
++
;
return
(
byte
);
}
static
int
decode_white_run
(
inbuf
)
unsigned
char
**
inbuf
;
{
short
state
=
sp_bit
;
short
action
;
int
runlen
=
0
;
for
(;;)
{
if
(
sp_bit
==
0
)
{
nextbyte
:
sp_data
=
fetchByte
(
inbuf
);
}
action
=
TIFFFax1DAction
[
state
][
sp_data
];
state
=
TIFFFax1DNextState
[
state
][
sp_data
];
if
(
action
==
0
)
goto
nextbyte
;
if
(
action
==
1
)
return
(
-
1
);
if
(
action
==
210
)
return
(
-
3
);
sp_bit
=
state
;
action
=
(
TIFFFaxWhiteCodes
[
action
-
2
].
runlen
)
;
runlen
+=
action
;
if
(
action
<
64
)
return
(
runlen
);
}
}
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