aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1997-08-27 18:54:11 +0000
committerJim Wilson <wilson@gcc.gnu.org>1997-08-27 11:54:11 -0700
commit67f68fd265af43b2ebeb3d478f71da0389763a98 (patch)
tree3f932c781dfb2d6b61568b165e049b13fbb996c6 /gcc
parent3dedc65a1f69e0e9929f5d9c036e14bb25074d8a (diff)
downloadgcc-67f68fd265af43b2ebeb3d478f71da0389763a98.zip
gcc-67f68fd265af43b2ebeb3d478f71da0389763a98.tar.gz
gcc-67f68fd265af43b2ebeb3d478f71da0389763a98.tar.bz2
Fix newlib coldfire build failure.
* m68k.md (iorsi3_internal): Readd ! TARGET_5200 check lost in last change. From-SVN: r14969
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/m68k/m68k.md2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4d42231..6c84a01 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Wed Aug 27 11:52:58 1997 Jim Wilson <wilson@cygnus.com>
+
+ * m68k.md (iorsi3_internal): Readd ! TARGET_5200 check lost in
+ last change.
+
Wed Aug 27 01:56:18 1997 Doug Evans <dje@seba.cygnus.com>
* loop.c (combine_movables): Earlier insns don't match later ones.
diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md
index 0d31de2..456b277 100644
--- a/gcc/config/m68k/m68k.md
+++ b/gcc/config/m68k/m68k.md
@@ -3675,7 +3675,7 @@
[(set (match_operand:SI 0 "general_operand" "=m,d")
(ior:SI (match_operand:SI 1 "general_operand" "%0,0")
(match_operand:SI 2 "general_operand" "dKs,dmMs")))]
- ""
+ "! TARGET_5200"
"*
{
return output_iorsi3 (operands);