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
be3d27d6
Commit
be3d27d6
authored
Dec 17, 1997
by
Christian Iseli
Committed by
Jeff Law
Dec 16, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (force_to_mode): return immediately if operand is a CLOBBER.
From-SVN: r17121
parent
ade7386a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/combine.c
+5
-2
No files found.
gcc/ChangeLog
View file @
be3d27d6
Wed Dec 17 00:13:48 1997 Christian Iseli <Christian.Iseli@lslsun.epfl.ch>
* combine.c (force_to_mode): return immediately if operand is a CLOBBER.
Tue Dec 16 23:44:54 1997 Manfred Hollstein <manfred@s-direktnet.de>
Tue Dec 16 23:44:54 1997 Manfred Hollstein <manfred@s-direktnet.de>
* fixincludes (size_t): Add support for Motorola's stdlib.h
* fixincludes (size_t): Add support for Motorola's stdlib.h
...
...
gcc/combine.c
View file @
be3d27d6
...
@@ -6064,8 +6064,11 @@ force_to_mode (x, mode, mask, reg, just_select)
...
@@ -6064,8 +6064,11 @@ force_to_mode (x, mode, mask, reg, just_select)
/* If this is a CALL or ASM_OPERANDS, don't do anything. Some of the
/* If this is a CALL or ASM_OPERANDS, don't do anything. Some of the
code below will do the wrong thing since the mode of such an
code below will do the wrong thing since the mode of such an
expression is VOIDmode. */
expression is VOIDmode.
if
(
code
==
CALL
||
code
==
ASM_OPERANDS
)
Also do nothing if X is a CLOBBER; this can happen if X was
the return value from a call to gen_lowpart_for_combine. */
if
(
code
==
CALL
||
code
==
ASM_OPERANDS
||
code
==
CLOBBER
)
return
x
;
return
x
;
/* We want to perform the operation is its present mode unless we know
/* We want to perform the operation is its present mode unless we know
...
...
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