Commit 9a0b18f2 by Richard Kenner

(alpha_{arg,auto}_offset): Make extern.

From-SVN: r10434
parent 5731aa12
...@@ -1925,8 +1925,8 @@ literal_section () \ ...@@ -1925,8 +1925,8 @@ literal_section () \
from the virtual frame pointer and adjust the debugger arg/auto offsets from the virtual frame pointer and adjust the debugger arg/auto offsets
accordingly. These debugger offsets are set up in output_prolog. */ accordingly. These debugger offsets are set up in output_prolog. */
long alpha_arg_offset; extern long alpha_arg_offset;
long alpha_auto_offset; extern long alpha_auto_offset;
#define DEBUGGER_AUTO_OFFSET(X) \ #define DEBUGGER_AUTO_OFFSET(X) \
((GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0) + alpha_auto_offset) ((GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0) + alpha_auto_offset)
#define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET + alpha_arg_offset) #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET + alpha_arg_offset)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment