diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/function.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 96fd174..0f76a8b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-06-30 Jakub Jelinek <jakub@redhat.com> + + * function.c (gen_stack_protect_test): Add third argument. + 2005-06-30 J. D. Johnston <jjohnst@us.ibm.com> * gthr-tpf.h (CE2THRCPTR): Change field offset to 16. diff --git a/gcc/function.c b/gcc/function.c index 9727e6d..12ebece 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3972,8 +3972,8 @@ stack_protect_prologue (void) the end of a function to be protected. */ #ifndef HAVE_stack_protect_test -# define HAVE_stack_protect_test 0 -# define gen_stack_protect_test(x, y) (gcc_unreachable (), NULL_RTX) +# define HAVE_stack_protect_test 0 +# define gen_stack_protect_test(x, y, z) (gcc_unreachable (), NULL_RTX) #endif static void |