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
a5ef9010
Commit
a5ef9010
authored
Jul 17, 1994
by
Jason Merrill
Committed by
Jason Merrill
Jul 17, 1994
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r7774
parent
d996122c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletions
+14
-1
gcc/cp/ChangeLog
+3
-0
gcc/cp/method.c
+11
-1
No files found.
gcc/cp/ChangeLog
View file @
a5ef9010
Wed Jul 13 03:57:54 1994 Jason Merrill (jason@deneb.cygnus.com)
* method.c (hack_identifier): Put back old code so lists of
non-functions will be handled properly.
* cp-tree.h (TYPE_NEEDS_CONSTRUCTING): #if 0 out; this macro is now
defined in the language-independent tree.h.
...
...
gcc/cp/method.c
View file @
a5ef9010
...
...
@@ -1458,7 +1458,7 @@ hack_identifier (value, name, yychar)
return
build_component_ref
(
C_C_D
,
name
,
0
,
1
);
}
if
(
TREE_CODE
(
value
)
==
TREE_LIST
)
if
(
really_overloaded_fn
(
value
)
)
{
tree
t
=
get_first_fn
(
value
);
while
(
t
)
...
...
@@ -1468,6 +1468,16 @@ hack_identifier (value, name, yychar)
t
=
DECL_CHAIN
(
t
);
}
}
else
if
(
TREE_CODE
(
value
)
==
TREE_LIST
)
{
tree
t
=
value
;
while
(
t
&&
TREE_CODE
(
t
)
==
TREE_LIST
)
{
assemble_external
(
TREE_VALUE
(
t
));
TREE_USED
(
t
)
=
1
;
t
=
TREE_CHAIN
(
t
);
}
}
else
{
assemble_external
(
value
);
...
...
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