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
f7ca2fe7
Commit
f7ca2fe7
authored
Jun 14, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(hack_method_prototype): Set DECL_CONTEXT of parms.
From-SVN: r9953
parent
c816db88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
gcc/objc/objc-act.c
+4
-0
No files found.
gcc/objc/objc-act.c
View file @
f7ca2fe7
...
...
@@ -2925,6 +2925,7 @@ hack_method_prototype (nst_methods, tmp_decl)
tree
tmp_decl
;
{
tree
parms
;
tree
parm
;
/* Hack to avoid problem with static typing of self arg. */
TREE_SET_CODE
(
nst_methods
,
CLASS_METHOD_DECL
);
...
...
@@ -2953,6 +2954,9 @@ hack_method_prototype (nst_methods, tmp_decl)
DECL_RESULT
(
tmp_decl
)
=
build_decl
(
RESULT_DECL
,
0
,
restype
);
}
for
(
parm
=
DECL_ARGUMENTS
(
tmp_decl
);
parm
;
parm
=
TREE_CHAIN
(
parm
))
DECL_CONTEXT
(
parm
)
=
tmp_decl
;
init_function_start
(
tmp_decl
,
"objc-act"
,
0
);
/* Typically called from expand_function_start for function definitions. */
...
...
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