host-darwin.c (darwin_rs6000_extra_siganls): Cast the "void*" result of xmalloc to "char*" to fix bootstrap breakage.
* config/rs6000/host-darwin.c (darwin_rs6000_extra_siganls): Cast the "void*" result of xmalloc to "char*" to fix bootstrap breakage. From-SVN: r137500
This commit is contained in:
parent
f851d73681
commit
33c7eedf00
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-07-04 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* config/rs6000/host-darwin.c (darwin_rs6000_extra_siganls): Cast
|
||||
the "void*" result of xmalloc to "char*" to fix bootstrap breakage.
|
||||
|
||||
2008-07-04 Kaz Kojima <kkojima@gcc.gnu.org>
|
||||
|
||||
PR target/36684
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
/* Darwin/powerpc host-specific hook definitions.
|
||||
Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||
Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -138,7 +139,7 @@ darwin_rs6000_extra_signals (void)
|
|||
struct sigaction sact;
|
||||
stack_t sigstk;
|
||||
|
||||
sigstk.ss_sp = xmalloc (SIGSTKSZ);
|
||||
sigstk.ss_sp = (char*)xmalloc (SIGSTKSZ);
|
||||
sigstk.ss_size = SIGSTKSZ;
|
||||
sigstk.ss_flags = 0;
|
||||
if (sigaltstack (&sigstk, NULL) < 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue