Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4924)

Unified Diff: gcc/cp/pph-streamer.c

Issue 5302068: [pph] Fix some cgraph node merge problems (Closed)
Patch Set: Created 13 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/cp/pph-streamer.h ('k') | gcc/cp/pph-streamer-in.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/cp/pph-streamer.c
diff --git a/gcc/cp/pph-streamer.c b/gcc/cp/pph-streamer.c
index 8624c13..9e23529 100644
--- a/gcc/cp/pph-streamer.c
+++ b/gcc/cp/pph-streamer.c
@@ -376,7 +376,10 @@ pph_cache_insert_at (pph_cache *cache, void *data, unsigned ix,
map_slot = pointer_map_insert (cache->m, data);
- /* We should not be trying to insert the same data more than once. */
+ /* We should not be trying to insert the same data more than once.
+ This indicates that the same DATA pointer has been given two
+ different cache locations. This almost always points to a
+ problem with merging data structures read from different files. */
gcc_assert (*map_slot == NULL);
*map_slot = (void *) (intptr_t) ix;
@@ -575,17 +578,3 @@ pph_get_signature (tree t, size_t *nbytes_p)
return crc;
}
-
-
-/* Return the merge name string identifier tree for a decl EXPR. */
-
-tree
-pph_merge_name (tree expr)
-{
- if (TREE_CODE (expr) == FUNCTION_DECL
- && !DECL_BUILT_IN (expr)
- && DECL_LANG_SPECIFIC (expr))
- return DECL_ASSEMBLER_NAME (expr);
- else
- return DECL_NAME (expr);
-}
« no previous file with comments | « gcc/cp/pph-streamer.h ('k') | gcc/cp/pph-streamer-in.c » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b