* sh.c (output_far_jump): Emit braf only for TARGET_SH2.

From-SVN: r24144
This commit is contained in:
J"orn Rennecke 1998-12-07 08:18:29 +00:00 committed by Joern Rennecke
parent e253ffc28b
commit 1a953d0f16
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Dec 7 16:15:51 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.c (output_far_jump): Emit braf only for TARGET_SH2.
Sun Dec 6 04:19:45 PST 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot.

View File

@ -657,7 +657,9 @@ output_far_jump (insn, op)
this.lab = gen_label_rtx ();
if (offset >= -32764 && offset - get_attr_length (insn) <= 32766)
if (TARGET_SH2
&& offset >= -32764
&& offset - get_attr_length (insn) <= 32766)
{
far = 0;
jump = "mov.w %O0,%1;braf %1";