ia64.c (rtx_needs_barrier): Call rtx_needs_barrier for RETURNS as well.

2001-05-14  Andrew MacLeod  <amacleod@redhat.com>

	* config/ia64/ia64.c (rtx_needs_barrier): Call rtx_needs_barrier
	for RETURNS as well.

From-SVN: r42077
This commit is contained in:
Andrew MacLeod 2001-05-14 17:44:56 +00:00 committed by Andrew Macleod
parent 127699902e
commit 339cb12e41
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-05-14 Andrew MacLeod <amacleod@redhat.com>
* config/ia64/ia64.c (rtx_needs_barrier): Call rtx_needs_barrier
for RETURNS as well.
2001-05-14 Nick Clifton <nickc@cambridge.redhat.com>
* decl.c (duplicate_decls): Suppress warning about duplicate

View File

@ -4277,7 +4277,7 @@ rtx_needs_barrier (x, flags, pred)
pred);
}
}
else if (GET_CODE (pat) == CLOBBER)
else if (GET_CODE (pat) == CLOBBER || GET_CODE (pat) == RETURN)
need_barrier |= rtx_needs_barrier (pat, flags, pred);
}
break;