diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sh/sh.md | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c79fc22d778..c989372e4ab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-10-06 Alexandre Oliva <aoliva@redhat.com> + + * config/sh/sh.md (calli_pcrel, call_valuei_pcrel): Add + `TARGET_SH2' as a condition. + 2000-10-06 Vladimir Makarov <vmakarov@touchme.toronto.redhat.com> * haifa-sched.c (anti_dependency_cache, output_dependency_cache, diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index 25983569970..4031d86e2b1 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -3287,7 +3287,7 @@ (use (reg:SI 48)) (use (match_operand 2 "" "")) (clobber (reg:SI 17))] - "" + "TARGET_SH2" "bsrf %0\\n%O2:%#" [(set_attr "type" "call") (set (attr "fp_mode") @@ -3316,7 +3316,7 @@ (use (reg:SI 48)) (use (match_operand 3 "" "")) (clobber (reg:SI 17))] - "" + "TARGET_SH2" "bsrf %1\\n%O3:%#" [(set_attr "type" "call") (set (attr "fp_mode") |