From: Richard Kenner Date: Fri, 6 Oct 1995 17:42:42 +0000 (-0400) Subject: (alpha_{arg,auto}_offset): Make extern. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0;p=gcc.git (alpha_{arg,auto}_offset): Make extern. From-SVN: r10434 --- diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index e324e9b93a0..26a34fe66fc 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)