diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-03 18:36:49 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-06-03 18:36:49 -0400 |
commit | 107b5ee699ecf5105613e31501040a7b78187774 (patch) | |
tree | 051aaa788c3bd7817fdb0ac2d56fbbe33fbf3bc5 | |
parent | 44e62a7a6e0f02998282a54c3a5da51e80b5cf25 (diff) | |
download | gcc-107b5ee699ecf5105613e31501040a7b78187774.zip gcc-107b5ee699ecf5105613e31501040a7b78187774.tar.gz gcc-107b5ee699ecf5105613e31501040a7b78187774.tar.bz2 |
(hppa_builtin_saveregs): Add declaration.
From-SVN: r9870
-rw-r--r-- | gcc/config/pa/pa.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 409b28f..5b52a9d 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1217,7 +1217,8 @@ extern union tree_node *current_function_decl; Ordinarily they are not call used registers, but they are for _builtin_saveregs, so we must make this explicit. */ -#define EXPAND_BUILTIN_SAVEREGS(ARGLIST) (rtx)hppa_builtin_saveregs (ARGLIST) +extern struct rtx_def *hppa_builtin_saveregs (); +#define EXPAND_BUILTIN_SAVEREGS(ARGLIST) hppa_builtin_saveregs (ARGLIST) /* Addressing modes, and classification of registers for them. */ |