diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-16 16:48:09 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-16 16:48:09 -0700 |
commit | 0868989e574e03570ce6388a9b2e00fdbb63b0ee (patch) | |
tree | dac251fcca94e8d77640ea24f68f4e7c714e4b09 | |
parent | 626e2d6db5815ceab5a49f71c42bcfb03c315666 (diff) | |
download | gcc-0868989e574e03570ce6388a9b2e00fdbb63b0ee.zip gcc-0868989e574e03570ce6388a9b2e00fdbb63b0ee.tar.gz gcc-0868989e574e03570ce6388a9b2e00fdbb63b0ee.tar.bz2 |
alpha-interix.h (DWARF2_UNWIND_INFO): Define to zero.
* alpha/alpha-interix.h (DWARF2_UNWIND_INFO): Define to zero.
* alpha/osf2or3.h (DWARF2_UNWIND_INFO): Likewise.
From-SVN: r29467
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/alpha-interix.h | 1 | ||||
-rw-r--r-- | gcc/config/alpha/osf2or3.h | 4 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 961f5a7..5667361 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 16 16:47:08 1999 Richard Henderson <rth@cygnus.com> + + * alpha/alpha-interix.h (DWARF2_UNWIND_INFO): Define to zero. + * alpha/osf2or3.h (DWARF2_UNWIND_INFO): Likewise. + Thu Sep 16 16:35:41 1999 Richard Henderson <rth@cygnus.com> * alpha.md: Revert Thu Nov 26 change that came in through the diff --git a/gcc/config/alpha/alpha-interix.h b/gcc/config/alpha/alpha-interix.h index 668fe93..f90d06f 100644 --- a/gcc/config/alpha/alpha-interix.h +++ b/gcc/config/alpha/alpha-interix.h @@ -211,6 +211,7 @@ while (0) /* DWARF2 Unwinding doesn't work with exception handling yet. */ #undef DWARF2_UNWIND_INFO +#define DWARF2_UNWIND_INFO 0 /* Don't assume anything about the header files. */ #define NO_IMPLICIT_EXTERN_C diff --git a/gcc/config/alpha/osf2or3.h b/gcc/config/alpha/osf2or3.h index 5abdb0e..9d8c8f5 100644 --- a/gcc/config/alpha/osf2or3.h +++ b/gcc/config/alpha/osf2or3.h @@ -24,7 +24,9 @@ Boston, MA 02111-1307, USA. */ #define LIB_SPEC "%{p:-lprof1} %{pg:-lprof1} %{a:-lprof2} -lc" /* As of OSF 3.2, as still can't subtract adjacent labels. */ - #undef TARGET_AS_CAN_SUBTRACT_LABELS #define TARGET_AS_CAN_SUBTRACT_LABELS 0 +/* The frame unwind data requires the ability to subtract labels. */ +#undef DWARF2_UNWIND_INFO +#define DWARF2_UNWIND_INFO 0 |