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
e93eff94
Commit
e93eff94
authored
Sep 27, 2000
by
Donald Lindsay
Committed by
Don Lindsay
Sep 27, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by rth to fix inline-of-an-inline return-value bug.
From-SVN: r36654
parent
59c5d27a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
gcc/ChangeLog
+5
-0
gcc/integrate.c
+7
-0
No files found.
gcc/ChangeLog
View file @
e93eff94
Wed Sep 27 14:00:07 2000 Donald Lindsay <dlindsay@cygnus.com>
* integrate.c (copy_insn_list): if an ignored return value
is being clobbered, skip cloning that into the inline copy.
2000-09-27 Joseph S. Myers <jsm28@cam.ac.uk>
* extend.texi, invoke.texi, gcc.texi, install.texi: Consistently
...
...
gcc/integrate.c
View file @
e93eff94
...
...
@@ -1294,6 +1294,13 @@ copy_insn_list (insns, map, static_chain_value)
break
;
}
/* Similarly if an ignored return value is clobbered. */
else
if
(
map
->
inline_target
==
0
&&
GET_CODE
(
pattern
)
==
CLOBBER
&&
GET_CODE
(
XEXP
(
pattern
,
0
))
==
REG
&&
REG_FUNCTION_VALUE_P
(
XEXP
(
pattern
,
0
)))
break
;
/* If this is setting the static chain rtx, omit it. */
else
if
(
static_chain_value
!=
0
&&
set
!=
0
...
...
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