darwin.md (*call_nonlocal_darwin64): Add #else clause for non Darwin targets.

2004-08-17  Andreas Tobler  <a.tobler@schweiz.ch>

	* config/rs6000/darwin.md (*call_nonlocal_darwin64): Add #else clause
	for non Darwin targets.
	(*call_value_nonlocal_darwin64): Likewise.

From-SVN: r86136
This commit is contained in:
Andreas Tobler 2004-08-17 19:07:38 +02:00 committed by Andreas Tobler
parent d0b2079e0a
commit 13a98f14d2
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-08-17 Andreas Tobler <a.tobler@schweiz.ch>
* config/rs6000/darwin.md (*call_nonlocal_darwin64): Add #else clause
for non Darwin targets.
(*call_value_nonlocal_darwin64): Likewise.
2004-08-17 Fariborz Jahanian <fjahanian@apple.com>
* config/rs6000/rs6000.c (rs6000_function_value): Check for

View File

@ -230,6 +230,8 @@ Boston, MA 02111-1307, USA. */
{
#if TARGET_MACHO
return output_call(insn, operands, 0, 2);
#else
abort();
#endif
}
[(set_attr "type" "branch,branch")
@ -259,7 +261,9 @@ Boston, MA 02111-1307, USA. */
{
#if TARGET_MACHO
return output_call(insn, operands, 1, 3);
#endif
#else
abort();
#endif
}
[(set_attr "type" "branch,branch")
(set_attr "length" "4,8")])