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
3cf37281
Commit
3cf37281
authored
Oct 19, 2000
by
Chandrakala Chavva
Committed by
Chandra Chavva
Oct 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* libgcc2.c (_mulvsi3): Change variables u and v to a and b.
From-SVN: r36952
parent
e6b4d09d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/libgcc2.c
+1
-1
No files found.
gcc/ChangeLog
View file @
3cf37281
2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
* libgcc2.c (_mulvsi3): Change variables u and v to a and b.
2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
* expmed.c: Minor corrections in comments.
* expmed.c: Minor corrections in comments.
* invoke.texi: Added desciption for the new option -ftrapv.
* invoke.texi: Added desciption for the new option -ftrapv.
...
...
gcc/libgcc2.c
View file @
3cf37281
...
@@ -141,7 +141,7 @@ __mulvsi3 (SItype a, SItype b)
...
@@ -141,7 +141,7 @@ __mulvsi3 (SItype a, SItype b)
w
=
a
*
b
;
w
=
a
*
b
;
if
(((
u
>=
0
)
==
(
v
>=
0
))
?
w
<
0
:
w
>
0
)
if
(((
a
>=
0
)
==
(
b
>=
0
))
?
w
<
0
:
w
>
0
)
abort
();
abort
();
return
w
;
return
w
;
...
...
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