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
998a298e
Commit
998a298e
authored
Jan 15, 2001
by
Geoffrey Keating
Committed by
Geoffrey Keating
Jan 15, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* expr.c (do_jump): Treat VOIDmode CONST_DOUBLEs like CONST_INTs.
From-SVN: r39035
parent
db3f4e4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/expr.c
+3
-1
No files found.
gcc/ChangeLog
View file @
998a298e
2001-01-14 Geoffrey Keating <geoffk@redhat.com>
* expr.c (do_jump): Treat VOIDmode CONST_DOUBLEs like CONST_INTs.
2001-01-14 Ralf Baechle <ralf@gnu.org>
2001-01-14 Ralf Baechle <ralf@gnu.org>
* config/mips/linux.h (SUBTARGET_CPP_SPEC): Default ABI is 32; change
* config/mips/linux.h (SUBTARGET_CPP_SPEC): Default ABI is 32; change
...
...
gcc/expr.c
View file @
998a298e
...
@@ -9771,7 +9771,9 @@ do_jump (exp, if_false_label, if_true_label)
...
@@ -9771,7 +9771,9 @@ do_jump (exp, if_false_label, if_true_label)
/* Do any postincrements in the expression that was tested. */
/* Do any postincrements in the expression that was tested. */
emit_queue
();
emit_queue
();
if
(
GET_CODE
(
temp
)
==
CONST_INT
||
GET_CODE
(
temp
)
==
LABEL_REF
)
if
(
GET_CODE
(
temp
)
==
CONST_INT
||
(
GET_CODE
(
temp
)
==
CONST_DOUBLE
&&
GET_MODE
(
temp
)
==
VOIDmode
)
||
GET_CODE
(
temp
)
==
LABEL_REF
)
{
{
rtx
target
=
temp
==
const0_rtx
?
if_false_label
:
if_true_label
;
rtx
target
=
temp
==
const0_rtx
?
if_false_label
:
if_true_label
;
if
(
target
)
if
(
target
)
...
...
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