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
e206854a
Commit
e206854a
authored
Jun 19, 1995
by
Mike Stump
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Will bring over with next merge.
From-SVN: r10013
parent
7ea426fe
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
14 deletions
+1
-14
gcc/cp/ChangeLog
+0
-5
gcc/cp/decl.c
+1
-9
No files found.
gcc/cp/ChangeLog
View file @
e206854a
Mon Jun 19 12:54:15 1995 Gerald Baumgartner (gb@alexander.cs.purdue.edu)
* decl.c (start_function): If current_class_decl is a signature
pointer, don't dereference it but set C_C_D to current_class_decl.
Fri Jun 16 15:07:29 1995 Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
* Make-lang.in (DEMANGLER_PROG): Add LIBS.
...
...
gcc/cp/decl.c
View file @
e206854a
...
...
@@ -11206,25 +11206,17 @@ start_function (declspecs, declarator, raises, pre_parsed_p)
we keep the consistency between `current_class_type'
and `current_class_decl'. */
tree
t
=
last_function_parms
;
int
i
=
suspend_momentary
();
my_friendly_assert
(
t
!=
NULL_TREE
&&
TREE_CODE
(
t
)
==
PARM_DECL
,
162
);
if
(
TREE_CODE
(
TREE_TYPE
(
t
))
==
POINTER_TYPE
)
{
int
i
=
suspend_momentary
();
/* Fool build_indirect_ref. */
current_class_decl
=
NULL_TREE
;
C_C_D
=
build_indirect_ref
(
t
,
NULL_PTR
);
current_class_decl
=
t
;
resume_momentary
(
i
);
}
else
/* We're having a signature pointer here. */
C_C_D
=
current_class_decl
=
t
;
}
}
else
{
...
...
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