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
de6cbba6
Commit
de6cbba6
authored
Jan 13, 1993
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ffsdi2 return types.
From-SVN: r3225
parent
f11f1fb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/libgcc2.c
+3
-3
No files found.
gcc/libgcc2.c
View file @
de6cbba6
...
@@ -265,14 +265,14 @@ __ffsdi2 (u)
...
@@ -265,14 +265,14 @@ __ffsdi2 (u)
w
.
s
.
high
=
0
;
w
.
s
.
high
=
0
;
w
.
s
.
low
=
ffs
(
uu
.
s
.
low
);
w
.
s
.
low
=
ffs
(
uu
.
s
.
low
);
if
(
w
.
s
.
low
!=
0
)
if
(
w
.
s
.
low
!=
0
)
return
w
;
return
w
.
ll
;
w
.
s
.
low
=
ffs
(
uu
.
s
.
high
);
w
.
s
.
low
=
ffs
(
uu
.
s
.
high
);
if
(
w
.
s
.
low
!=
0
)
if
(
w
.
s
.
low
!=
0
)
{
{
w
.
s
.
low
+=
BITS_PER_UNIT
*
sizeof
(
SItype
);
w
.
s
.
low
+=
BITS_PER_UNIT
*
sizeof
(
SItype
);
return
w
;
return
w
.
ll
;
}
}
return
w
;
return
w
.
ll
;
}
}
#endif
#endif
...
...
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