From a115251c2b89d7effa0f61bc8fd5d8225f0af913 Mon Sep 17 00:00:00 2001 From: Ilya Enkovich Date: Fri, 3 Apr 2015 09:00:53 +0000 Subject: cgraphunit.c (cgraph_node::expand_thunk): Don't expand instrumentation thunks. * cgraphunit.c (cgraph_node::expand_thunk): Don't expand instrumentation thunks. From-SVN: r221852 --- gcc/cgraphunit.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gcc/cgraphunit.c') diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 8ac92e1..77ef9ed 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1508,6 +1508,10 @@ cgraph_node::expand_thunk (bool output_asm_thunks, bool force_gimple_thunk) tree thunk_fndecl = decl; tree a; + /* Instrumentation thunk is the same function with + a different signature. Never need to expand it. */ + if (thunk.add_pointer_bounds_args) + return false; if (!force_gimple_thunk && this_adjusting && targetm.asm_out.can_output_mi_thunk (thunk_fndecl, fixed_offset, -- cgit v1.1