diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 11:25:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-06 11:25:38 +0000 |
commit | 08fc8a396aab8ac702ab9d4c8b58d173bc437b29 (patch) | |
tree | b702ba12981f2ae4bd2b1852cc0c248d6c73b5bb /sys | |
parent | 812f562ff4ae3f3f7fd01fcd646baf4407546411 (diff) |
Avoid computing a symbol with arithmetic involving a common, modern binutils
complain about this. From NetBSD
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/debug.s | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/debug.s b/sys/arch/alpha/alpha/debug.s index ed4fbc68983..dacd24d3f2e 100644 --- a/sys/arch/alpha/alpha/debug.s +++ b/sys/arch/alpha/alpha/debug.s @@ -1,4 +1,4 @@ -/* $OpenBSD: debug.s,v 1.5 2008/06/26 05:42:08 ray Exp $ */ +/* $OpenBSD: debug.s,v 1.6 2010/06/06 11:25:37 miod Exp $ */ /* $NetBSD: debug.s,v 1.5 1999/06/18 18:11:56 thorpej Exp $ */ /*- @@ -50,7 +50,8 @@ */ #define DEBUG_STACK_SIZE 8192 BSS(debug_stack_bottom, DEBUG_STACK_SIZE) -ABS(debug_stack_top, debug_stack_bottom + DEBUG_STACK_SIZE) + +#define debug_stack_top (debug_stack_bottom + DEBUG_STACK_SIZE) /* * alpha_debug: |