diff options
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5dafb8c..6f906ab 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5058,7 +5058,10 @@ stack_protect_epilogue (void) rtx_insn *seq; x = expand_normal (crtl->stack_protect_guard); - y = expand_normal (guard_decl); + if (guard_decl) + y = expand_normal (guard_decl); + else + y = const0_rtx; /* Allow the target to compare Y with X without leaking either into a register. */ |