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
76791f3d
Commit
76791f3d
authored
Jun 15, 2001
by
Jan Hubicka
Committed by
Jan Hubicka
Jun 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* optabs.c (expand_twoval_binop): Avoid undefined behaviour.
From-SVN: r43403
parent
f2541106
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
gcc/ChangeLog
+4
-0
gcc/optabs.c
+3
-5
No files found.
gcc/ChangeLog
View file @
76791f3d
Fri
Jun
15
19
:
35
:
38
CEST
2001
Jan
Hubicka
<
jh
@suse
.
cz
>
*
optabs
.
c
(
expand_twoval_binop
)
:
Avoid
undefined
behaviour
.
2001
-
06
-
15
Rainer
Orth
<
ro
@TechFak
.
Uni
-
Bielefeld
.
DE
>
*
doc
/
install
.
texi
(
Specific
,
alpha
*-*-*
)
:
Fixed
Tru64
UNIX
...
...
gcc/optabs.c
View file @
76791f3d
...
...
@@ -1992,12 +1992,10 @@ expand_twoval_binop (binoptab, op0, op1, targ0, targ1, unsignedp)
{
register
rtx
t0
=
gen_reg_rtx
(
wider_mode
);
register
rtx
t1
=
gen_reg_rtx
(
wider_mode
);
rtx
cop0
=
convert_modes
(
wider_mode
,
mode
,
op0
,
unsignedp
);
rtx
cop1
=
convert_modes
(
wider_mode
,
mode
,
op1
,
unsignedp
);
if
(
expand_twoval_binop
(
binoptab
,
convert_modes
(
wider_mode
,
mode
,
op0
,
unsignedp
),
convert_modes
(
wider_mode
,
mode
,
op1
,
unsignedp
),
if
(
expand_twoval_binop
(
binoptab
,
cop0
,
cop1
,
t0
,
t1
,
unsignedp
))
{
convert_move
(
targ0
,
t0
,
unsignedp
);
...
...
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