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
2f8edb39
Commit
2f8edb39
authored
Jun 02, 2000
by
Jason Merrill
Committed by
Jason Merrill
Jun 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl.c (store_return_init): Call put_var_into_stack.
From-SVN: r34364
parent
3ce74580
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
gcc/cp/ChangeLog
+4
-0
gcc/cp/decl.c
+3
-0
No files found.
gcc/cp/ChangeLog
View file @
2f8edb39
2000-06-02 Jason Merrill <jason@casey.soma.redhat.com>
* decl.c (store_return_init): Call put_var_into_stack.
2000-06-01 Mark Mitchell <mark@codesourcery.com>
2000-06-01 Mark Mitchell <mark@codesourcery.com>
* cp-tree.h (lang_decl_flags): Add anticipated_p.
* cp-tree.h (lang_decl_flags): Add anticipated_p.
...
...
gcc/cp/decl.c
View file @
2f8edb39
...
@@ -169,6 +169,7 @@ static void make_rtl_for_nonlocal_decl PARAMS ((tree, tree, const char *));
...
@@ -169,6 +169,7 @@ static void make_rtl_for_nonlocal_decl PARAMS ((tree, tree, const char *));
static
void
push_cp_function_context
PARAMS
((
struct
function
*
));
static
void
push_cp_function_context
PARAMS
((
struct
function
*
));
static
void
pop_cp_function_context
PARAMS
((
struct
function
*
));
static
void
pop_cp_function_context
PARAMS
((
struct
function
*
));
static
void
mark_binding_level
PARAMS
((
void
*
));
static
void
mark_binding_level
PARAMS
((
void
*
));
static
void
mark_named_label_lists
PARAMS
((
void
*
,
void
*
));
static
void
mark_cp_function_context
PARAMS
((
struct
function
*
));
static
void
mark_cp_function_context
PARAMS
((
struct
function
*
));
static
void
mark_saved_scope
PARAMS
((
void
*
));
static
void
mark_saved_scope
PARAMS
((
void
*
));
static
void
mark_lang_function
PARAMS
((
struct
language_function
*
));
static
void
mark_lang_function
PARAMS
((
struct
language_function
*
));
...
@@ -14025,6 +14026,8 @@ store_return_init (decl)
...
@@ -14025,6 +14026,8 @@ store_return_init (decl)
here, we use the mode the back-end has already assigned for
here, we use the mode the back-end has already assigned for
the return value. */
the return value. */
DECL_RTL
(
decl
)
=
gen_reg_rtx
(
GET_MODE
(
original_result_rtx
));
DECL_RTL
(
decl
)
=
gen_reg_rtx
(
GET_MODE
(
original_result_rtx
));
if
(
TREE_ADDRESSABLE
(
decl
))
put_var_into_stack
(
decl
);
}
}
}
}
...
...
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