diff options
author | Nicolas Setton <setton@adacore.com> | 2005-03-15 16:51:35 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-03-15 16:51:35 +0100 |
commit | 0f76876eeeea5bc90204418d4c78e46d757c9f92 (patch) | |
tree | 37eacb111555e4882ac732f8513cdf3cac1014d0 /gcc | |
parent | 6178dd5c193f48ebdbcdfd2fd2a1f8e69992819e (diff) | |
download | gcc-0f76876eeeea5bc90204418d4c78e46d757c9f92.zip gcc-0f76876eeeea5bc90204418d4c78e46d757c9f92.tar.gz gcc-0f76876eeeea5bc90204418d4c78e46d757c9f92.tar.bz2 |
tracebak.c: Under Darwin, use the same unwinding mechanisms as under PPC/AIX.
2005-03-08 Nicolas Setton <setton@adacore.com>
* tracebak.c: Under Darwin, use the same unwinding mechanisms as under
PPC/AIX.
From-SVN: r96485
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/tracebak.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/tracebak.c b/gcc/ada/tracebak.c index 83d51cc..1cd4a0f 100644 --- a/gcc/ada/tracebak.c +++ b/gcc/ada/tracebak.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 2000-2004 Ada Core Technologies, Inc. * + * Copyright (C) 2000-2005 Ada Core Technologies, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -191,9 +191,9 @@ extern void (*Unlock_Task) (void); */ -/*------------------------------ PPC AIX -------------------------------*/ +/*--------------------------- PPC AIX/Darwin ----------------------------*/ -#if defined (_AIX) +#if (defined (__ppc__) && ((defined (_AIX) || defined (__APPLE__)))) #define USE_GENERIC_UNWINDER |