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
9bd23d2c
Commit
9bd23d2c
authored
Sep 12, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(__gcc_bcmp): New function, in cond on L__gcc_bcmp.
From-SVN: r2110
parent
bb3facc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
gcc/libgcc2.c
+23
-0
No files found.
gcc/libgcc2.c
View file @
9bd23d2c
...
@@ -975,7 +975,30 @@ __fixunssfsi (SFtype a)
...
@@ -975,7 +975,30 @@ __fixunssfsi (SFtype a)
#undef unsigned
#undef unsigned
#undef float
#undef float
#undef double
#undef double
#ifdef L__gcc_bcmp
/* Like bcmp except the sign is meaningful.
Reult is negative if S1 is less than S2,
positive if S1 is greater, 0 if S1 and S2 are equal. */
int
__gcc_bcmp
(
s1
,
s2
,
size
)
char
*
s1
,
*
s2
;
size_t
size
;
{
while
(
size
>
0
)
{
char
c1
=
*
s1
++
,
c2
=
*
s2
++
;
if
(
c1
!=
c2
)
return
c1
-
c2
;
size
--
;
}
return
0
;
}
#endif
#ifdef L_varargs
#ifdef L_varargs
#ifdef __i860__
#ifdef __i860__
#if defined(__svr4__) || defined(__alliant__)
#if defined(__svr4__) || defined(__alliant__)
...
...
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