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
affb2340
Commit
affb2340
authored
May 14, 2002
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert last checkin
From-SVN: r53457
parent
4d604303
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
12 deletions
+5
-12
gcc/cp/ChangeLog
+0
-4
gcc/cp/decl2.c
+3
-4
gcc/cp/rtti.c
+2
-4
No files found.
gcc/cp/ChangeLog
View file @
affb2340
...
...
@@ -5,10 +5,6 @@
(build_base_path): Vtable contents are constant.
* typeck.c (get_member_function_from_ptrfunc): Likewise.
* rtti.c (emit_tinfo_decl): Call import_export_decl.
* decl2.c (import_export_decl): Set DECL_NOT_REALLY_EXTERN on
tinfo decls by default. Don't mess with the builtins.
2002-05-12 Jason Merrill <jason@redhat.com>
* cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
...
...
gcc/cp/decl2.c
View file @
affb2340
...
...
@@ -2514,7 +2514,6 @@ import_export_decl (decl)
if
(
IS_AGGR_TYPE
(
ctype
))
import_export_class
(
ctype
);
DECL_NOT_REALLY_EXTERN
(
decl
)
=
1
;
if
(
IS_AGGR_TYPE
(
ctype
)
&&
CLASSTYPE_INTERFACE_KNOWN
(
ctype
)
&&
TYPE_POLYMORPHIC_P
(
ctype
)
/* If -fno-rtti, we're not necessarily emitting this stuff with
...
...
@@ -2538,9 +2537,9 @@ import_export_decl (decl)
if
(
flag_weak
)
comdat_linkage
(
decl
);
}
/* We used to exclude the builtin types here, but that broke
emit_support_tinfos. Let rtti.c choose whether or not to emit
them. */
else
if
(
TYPE_BUILT_IN
(
ctype
)
&&
same_type_p
(
ctype
,
TYPE_MAIN_VARIANT
(
ctype
)))
DECL_NOT_REALLY_EXTERN
(
decl
)
=
0
;
else
comdat_linkage
(
decl
);
}
...
...
gcc/cp/rtti.c
View file @
affb2340
...
...
@@ -1462,11 +1462,9 @@ emit_tinfo_decl (decl_ptr, data)
my_friendly_assert
(
TREE_TYPE
(
tinfo_decl
)
==
tinfo_decl_type
,
20000121
);
tinfo_type
=
TREE_TYPE
(
DECL_NAME
(
tinfo_decl
));
my_friendly_assert
(
tinfo_type
!=
NULL_TREE
,
20000120
);
import_export_decl
(
tinfo_decl
);
if
(
DECL_REALLY_EXTERN
(
tinfo_decl
)
||
!
DECL_NEEDED_P
(
tinfo_decl
))
if
(
!
DECL_NEEDED_P
(
tinfo_decl
))
return
0
;
/* Say we've dealt with it. */
TREE_TYPE
(
DECL_NAME
(
tinfo_decl
))
=
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