diff options
author | Mike Stump <mrs@gcc.gnu.org> | 2007-02-21 23:58:22 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2007-02-21 23:58:22 +0000 |
commit | ba7da42a75dcdced58f7e7478015543902d937d7 (patch) | |
tree | 8bab3289362a6211cd492dd5f86be5ad449ba4e8 | |
parent | 73701e27366b20395ad5c3e296983b20ae0235b1 (diff) | |
download | gcc-ba7da42a75dcdced58f7e7478015543902d937d7.zip gcc-ba7da42a75dcdced58f7e7478015543902d937d7.tar.gz gcc-ba7da42a75dcdced58f7e7478015543902d937d7.tar.bz2 |
configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>.
* configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>.
* configure: Regenerate.
From-SVN: r122211
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rwxr-xr-x | gcc/configure | 1 | ||||
-rw-r--r-- | gcc/configure.ac | 1 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f85cc79..9e43e9e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-02-20 Mike Stump <mrs@apple.com> + + * configure.ac (powerpc*-*-darwin*): #include <sys/cdefs.h>. + * configure: Regenerate. + 2007-02-21 Trevor Smigiel <trevor_smigiel@playstation.sony.com> Change the defaults of some parameters and options. @@ -20,7 +25,7 @@ Make sure shift and rotate instructions have valid immediate operands. * config/spu/predicates.md (spu_shift_operand): Remove. * config/spu/spu.c (print_operand): Add [efghEFGH] modifiers. - * config/spu/constraints.md (W, O): Extend range. + * config/spu/constraints.md (W, O): Extend range. * config/spu/spu.md (umask, nmask): Define. (ashl<mode>3, ashldi3, ashlti3_imm, shlqbybi_ti, shlqbi_ti, shlqby_ti, lshr<mode>3, rotm_<mode>, lshr<mode>3_imm, rotqmbybi_<mode>, @@ -205,7 +210,7 @@ intrinsics. 2007-02-20 Manuel Lopez-Ibanez <manu@gcc.gnu.org> - DJ Delorie <dj@redhat.com> + DJ Delorie <dj@redhat.com> PR other/30824 * diagnostic.c (diagnostic_count_diagnostic): Move -Werror logic to... diff --git a/gcc/configure b/gcc/configure index a2abfcc..e1f72d7 100755 --- a/gcc/configure +++ b/gcc/configure @@ -12292,6 +12292,7 @@ if test "${gcc_cv_mcontext_underscores+set}" = set; then else cat >conftest.$ac_ext <<_ACEOF +#include <sys/cdefs.h> #include <sys/signal.h> #include <ucontext.h> int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; } diff --git a/gcc/configure.ac b/gcc/configure.ac index db9a0c3d..ef2249b 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1334,6 +1334,7 @@ case ${host} in AC_CACHE_CHECK([whether mcontext_t fields have underscores], gcc_cv_mcontext_underscores, AC_COMPILE_IFELSE([ +#include <sys/cdefs.h> #include <sys/signal.h> #include <ucontext.h> int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; } |