diff options
author | Michael Hayes <m.hayes@elec.canterbury.ac.nz> | 1999-01-13 16:52:03 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 1999-01-13 16:52:03 +0000 |
commit | 9b4f2bb71477ba233b1a3be9372f849ee4945029 (patch) | |
tree | 281eabcd9133fbfff0fd720f1b92f5c51314fa6c | |
parent | 5db698f69596792710fcaed354fec8e1b3cd6937 (diff) | |
download | gcc-9b4f2bb71477ba233b1a3be9372f849ee4945029.zip gcc-9b4f2bb71477ba233b1a3be9372f849ee4945029.tar.gz gcc-9b4f2bb71477ba233b1a3be9372f849ee4945029.tar.bz2 |
c4x.md (in_annul_slot_3): Correctly allow unarycc and binarycc operations in 3rd annulled delay slot!
* config/c4x/c4x.md (in_annul_slot_3): Correctly allow unarycc
and binarycc operations in 3rd annulled delay slot!
From-SVN: r24657
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/c4x/c4x.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b36115d..98b1e03 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 14 13:52:42 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz> + + * config/c4x/c4x.md (in_annul_slot_3): Correctly allow unarycc + and binarycc operations in 3rd annulled delay slot! + 1999-01-12 Manfred Hollstein <manfred@s-direktnet.de> * m68k/mot3300.h (ADD_MISSING_POSIX, ADD_MISSING_XOPEN): Define to diff --git a/gcc/config/c4x/c4x.md b/gcc/config/c4x/c4x.md index 1e3d343e..50c1a32 100644 --- a/gcc/config/c4x/c4x.md +++ b/gcc/config/c4x/c4x.md @@ -369,7 +369,7 @@ (define_attr "in_annul_slot_3" "false,true" (if_then_else (and (eq_attr "cpu" "c4x") - (eq_attr "type" "!jump,call,rets,jmpc,unarycc,binarycc,db,dbc,repeat,repeat_top,laj,push,pop,multi")) + (eq_attr "type" "!jump,call,rets,jmpc,db,dbc,repeat,repeat_top,laj,push,pop,multi")) (const_string "true") (const_string "false"))) |