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
c0e4f189
Commit
c0e4f189
authored
Aug 22, 2001
by
Aldy Hernandez
Committed by
Aldy Hernandez
Aug 22, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
From-SVN: r45104
parent
340f7e7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
26 deletions
+14
-26
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/divmod-1.c
+10
-26
No files found.
gcc/testsuite/ChangeLog
View file @
c0e4f189
2001-08-21 Aldy Hernandez <aldyh@redhat.com>
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
2001-08-20 Janis Johnson <janis187@us.ibm.com>
* gcc.misc-tests/gcov.exp: Add support for branch information.
...
...
gcc/testsuite/gcc.c-torture/execute/divmod-1.c
View file @
c0e4f189
div1
(
x
)
signed
char
x
;
div1
(
signed
char
x
)
{
return
x
/
-
1
;
}
div2
(
x
)
signed
short
x
;
div2
(
signed
short
x
)
{
return
x
/
-
1
;
}
div3
(
x
,
y
)
signed
char
x
;
signed
char
y
;
div3
(
signed
char
x
,
signed
char
y
)
{
return
x
/
y
;
}
div4
(
x
,
y
)
signed
short
x
;
signed
short
y
;
div4
(
signed
short
x
,
signed
short
y
)
{
return
x
/
y
;
}
mod1
(
x
)
signed
char
x
;
mod1
(
signed
char
x
)
{
return
x
%
-
1
;
}
mod2
(
x
)
signed
short
x
;
mod2
(
signed
short
x
)
{
return
x
%
-
1
;
}
mod3
(
x
,
y
)
signed
char
x
;
signed
char
y
;
mod3
(
signed
char
x
,
signed
char
y
)
{
return
x
%
y
;
}
mod4
(
x
,
y
)
signed
short
x
;
signed
short
y
;
mod4
(
signed
short
x
,
signed
short
y
)
{
return
x
%
y
;
}
signed
long
mod5
(
x
,
y
)
signed
long
x
;
signed
long
y
;
mod5
(
signed
long
x
,
signed
long
y
)
{
return
x
%
y
;
}
unsigned
long
mod6
(
x
,
y
)
unsigned
long
x
;
unsigned
long
y
;
mod6
(
unsigned
long
x
,
unsigned
long
y
)
{
return
x
%
y
;
}
...
...
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