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
bc4ddc77
Commit
bc4ddc77
authored
Sep 01, 1997
by
Jim Wilson
Committed by
Jim Wilson
Sep 01, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix irix6 execute/921117-1.c c-torture failure.
* cse.c (cse_insn): Don't record BLKmode values. From-SVN: r15024
parent
7e3af374
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/cse.c
+4
-0
No files found.
gcc/ChangeLog
View file @
bc4ddc77
Mon Sep 1 16:25:34 1997 Jim Wilson <wilson@cygnus.com>
* cse.c (cse_insn): Don't record BLKmode values.
Mon Sep 1 11:25:47 1997 Stephen Williams (steve@icarus.icarus.com)
* i960.h (LINK_SPEC): Handle "-mjX" and "-mrp" switches.
...
...
gcc/cse.c
View file @
bc4ddc77
...
...
@@ -7297,6 +7297,10 @@ cse_insn (insn, in_libcall_block)
if
((
flag_float_store
&&
GET_CODE
(
dest
)
==
MEM
&&
FLOAT_MODE_P
(
GET_MODE
(
dest
)))
/* Don't record BLKmode values, because we don't know the
size of it, and can't be sure that other BLKmode values
have the same or smaller size. */
||
GET_MODE
(
dest
)
==
BLKmode
/* Don't record values of destinations set inside a libcall block
since we might delete the libcall. Things should have been set
up so we won't want to reuse such a value, but we play it safe
...
...
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