From 5e56f90934bee3ddf51271c4246e0f3d331b203e Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Fri, 26 Apr 2002 18:58:16 +0000 Subject: [PATCH] pa.h (FUNCTION_OK_FOR_SIBCALL): Don't do sibcalls when using the portable runtime model. * pa.h (FUNCTION_OK_FOR_SIBCALL): Don't do sibcalls when using the portable runtime model. From-SVN: r52800 --- gcc/ChangeLog | 5 +++++ gcc/config/pa/pa.h | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b23b5f8ca4..c87842e72e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-04-26 John David Anglin + + * pa.h (FUNCTION_OK_FOR_SIBCALL): Don't do sibcalls when using the + portable runtime model. + 2002-04-26 Richard Henderson * c-parse.in (yyoverflow): Revert. diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 0fd97eefc2e..d1d37739532 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1981,6 +1981,7 @@ while (0) will never return. */ #define FUNCTION_OK_FOR_SIBCALL(DECL) \ (DECL \ + && ! TARGET_PORTABLE_RUNTIME \ && ! TARGET_64BIT \ && ! TREE_PUBLIC (DECL)) -- 2.30.2