diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-06 13:42:42 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-10-06 13:42:42 -0400 |
commit | 9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0 (patch) | |
tree | 142e264d3ea8b6b55cf8064e0a70a7f6d1305a77 /gcc | |
parent | 5731aa1257569b40515d4bc59a31fcf536ca6b0b (diff) | |
download | gcc-9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0.zip gcc-9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0.tar.gz gcc-9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0.tar.bz2 |
(alpha_{arg,auto}_offset): Make extern.
From-SVN: r10434
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index e324e9b..26a34fe 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -1925,8 +1925,8 @@ literal_section () \ from the virtual frame pointer and adjust the debugger arg/auto offsets accordingly. These debugger offsets are set up in output_prolog. */ -long alpha_arg_offset; -long alpha_auto_offset; +extern long alpha_arg_offset; +extern long alpha_auto_offset; #define DEBUGGER_AUTO_OFFSET(X) \ ((GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0) + alpha_auto_offset) #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET + alpha_arg_offset) |