Commit 6d3cc8f0 by Eric Botcazou Committed by Eric Botcazou

function.c (expand_function_start): Initialize stack_check_probe_note only if…

function.c (expand_function_start): Initialize stack_check_probe_note only if the generic stack checking mechanism...

	* function.c (expand_function_start): Initialize stack_check_probe_note
	only if the generic stack checking mechanism is used.

From-SVN: r173661
parent 51e020fc
2011-05-11 Eric Botcazou <ebotcazou@adacore.com>
* function.c (expand_function_start): Initialize stack_check_probe_note
only if the generic stack checking mechanism is used.
2011-05-11 Richard Guenther <rguenther@suse.de>
PR tree-optimization/15256
......
......@@ -4813,9 +4813,8 @@ expand_function_start (tree subr)
#endif
}
/* After the display initializations is where the stack checking
probe should go. */
if(flag_stack_check)
/* If we are doing generic stack checking, the probe should go here. */
if (flag_stack_check == GENERIC_STACK_CHECK)
stack_check_probe_note = emit_note (NOTE_INSN_DELETED);
/* Make sure there is a line number after the function entry setup code. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment