From 9a0b18f24731facf487b45b2fa3fd7fcb20f7fa0 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 6 Oct 1995 13:42:42 -0400 Subject: [PATCH] (alpha_{arg,auto}_offset): Make extern. From-SVN: r10434 --- gcc/config/alpha/alpha.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.30.2