Commit 1a953d0f by J"orn Rennecke Committed by Joern Rennecke

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

From-SVN: r24144
parent e253ffc2
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.
......
......@@ -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";
......
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