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
0763f3ab
Commit
0763f3ab
authored
Jun 14, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(build_module_descriptor, really_start_method): Pass extra parm to
start_function. From-SVN: r9945
parent
79d101f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/objc/objc-act.c
+3
-3
No files found.
gcc/objc/objc-act.c
View file @
0763f3ab
...
...
@@ -1682,7 +1682,7 @@ build_module_descriptor ()
tree_cons
(
NULL_TREE
,
NULL_TREE
,
void_list_node
),
NULL_TREE
),
NULL_TREE
,
0
);
NULL_TREE
,
NULL_TREE
,
0
);
#if 0 /* This should be turned back on later
for the systems where collect is not needed. */
/* Make these functions nonglobal
...
...
@@ -6960,7 +6960,7 @@ really_start_method (method, parmlist)
method_decl
=
ret_decl
;
/* Fool the parser into thinking it is starting a function. */
start_function
(
decl_specs
,
method_decl
,
NULL_TREE
,
0
);
start_function
(
decl_specs
,
method_decl
,
NULL_TREE
,
NULL_TREE
,
0
);
/* Unhook: this has the effect of restoring the abstract declarator. */
TREE_OPERAND
(
save_expr
,
0
)
=
NULL_TREE
;
...
...
@@ -6971,7 +6971,7 @@ really_start_method (method, parmlist)
TREE_VALUE
(
TREE_TYPE
(
method
))
=
method_decl
;
/* Fool the parser into thinking it is starting a function. */
start_function
(
decl_specs
,
method_decl
,
NULL_TREE
,
0
);
start_function
(
decl_specs
,
method_decl
,
NULL_TREE
,
NULL_TREE
,
0
);
/* Unhook: this has the effect of restoring the abstract declarator. */
TREE_VALUE
(
TREE_TYPE
(
method
))
=
NULL_TREE
;
...
...
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