diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2011-05-11 15:15:26 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2011-05-11 15:15:26 +0000 |
commit | 6d3cc8f0516347d5e1a1dec49e872889967c0136 (patch) | |
tree | be8601ff815f749ff05faac53f3097ea2ad6cc7e /gcc/function.c | |
parent | 51e020fc08daf1c62eb4d78cee4e8d2d0172c7e6 (diff) | |
download | gcc-6d3cc8f0516347d5e1a1dec49e872889967c0136.zip gcc-6d3cc8f0516347d5e1a1dec49e872889967c0136.tar.gz gcc-6d3cc8f0516347d5e1a1dec49e872889967c0136.tar.bz2 |
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
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/function.c b/gcc/function.c index ab1ca9e..4b02201 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -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. */ |