Commit 33c7eedf by Roger Sayle Committed by Roger Sayle

host-darwin.c (darwin_rs6000_extra_siganls): Cast the "void*" result of xmalloc…

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
parent f851d736
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
......
/* 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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment