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
aa608fe6
Commit
aa608fe6
authored
25 years ago
by
Nick Clifton
Committed by
Nick Clifton
25 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oops - add missing return values
From-SVN: r30416
parent
71152e6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/function.c
+2
-2
No files found.
gcc/ChangeLog
View file @
aa608fe6
Fri
Nov
5
12
:
05
:
52
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
function
.
c
(
purge_addressof_1
)
:
Add
missing
return
values
.
Fri
Nov
5
10
:
07
:
25
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
function
.
c
(
is_addressof
)
:
New
function
.
Returns
true
if
...
...
This diff is collapsed.
Click to expand it.
gcc/function.c
View file @
aa608fe6
...
...
@@ -2896,7 +2896,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
z
=
gen_lowpart
(
GET_MODE
(
x
),
z
);
*
loc
=
z
;
return
;
return
true
;
}
/* Sometimes we may not be able to find the replacement. For
...
...
@@ -3033,7 +3033,7 @@ purge_addressof_1 (loc, insn, force, store, ht)
else
if
(
code
==
ADDRESSOF
)
{
put_addressof_into_stack
(
x
,
ht
);
return
;
return
true
;
}
else
if
(
code
==
SET
)
{
...
...
This diff is collapsed.
Click to expand it.
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