Commit 80f8fdf1 by Iain Sandoe

re PR bootstrap/50699 (Bootstrap fails on *-apple-darwin* due to revision 179820)


gcc:

	PR bootstrap/50699
	* config/darwin.c (darwin_patch_builtin): Adjust argument type. Only
	build for powerpc targets.  (darwin_patch_builtins): Only build for 
	powerpc targets.

From-SVN: r179962
parent d7a3ef97
2011-10-14 Iain Sandoe <iains@gcc.gnu.org>
PR bootstrap/50699
* config/darwin.c (darwin_patch_builtin): Adjust argument type. Only
build for powerpc targets. (darwin_patch_builtins): Only build for
powerpc targets.
2011-10-14 Jakub Jelinek <jakub@redhat.com>
* config/i386/sse.md (*avx_cvtdq2pd256_2): Rename to...
......@@ -2957,10 +2957,11 @@ darwin_override_options (void)
darwin_running_cxx = (strstr (lang_hooks.name, "C++") != 0);
}
/* Add $LDBL128 suffix to long double builtins. */
#if DARWIN_PPC
/* Add $LDBL128 suffix to long double builtins for ppc darwin. */
static void
darwin_patch_builtin (int fncode)
darwin_patch_builtin (enum built_in_function fncode)
{
tree fn = builtin_decl_explicit (fncode);
tree sym;
......@@ -2998,6 +2999,7 @@ darwin_patch_builtins (void)
#undef PATCH_BUILTIN_NO64
#undef PATCH_BUILTIN_VARIADIC
}
#endif
/* CFStrings implementation. */
static GTY(()) tree cfstring_class_reference = NULL_TREE;
......
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