summaryrefslogtreecommitdiff
path: root/gcc/cgraph.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r--gcc/cgraph.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c
index 9f0d603a1cf..49d80ad1e28 100644
--- a/gcc/cgraph.c
+++ b/gcc/cgraph.c
@@ -2110,7 +2110,12 @@ cgraph_node::dump (FILE *f)
(int)thunk.virtual_offset_p);
}
else if (former_thunk_p ())
- fprintf (f, " Former thunk");
+ fprintf (f, " Former thunk fixed offset %i virtual value %i "
+ "indirect_offset %i has virtual offset %i\n",
+ (int)thunk.fixed_offset,
+ (int)thunk.virtual_value,
+ (int)thunk.indirect_offset,
+ (int)thunk.virtual_offset_p);
if (alias && thunk.alias
&& DECL_P (thunk.alias))
{