diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-05-19 09:58:02 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-05-19 09:58:02 +0000 |
commit | 13719e8b7abb07bfd1e78d9bf456aa6cb70b47bc (patch) | |
tree | 182788304dfc2c5e4cd5e761701120aa351651e2 | |
parent | c3850d141f813d30b331565f2df47e8b53b730ea (diff) | |
download | gcc-13719e8b7abb07bfd1e78d9bf456aa6cb70b47bc.zip gcc-13719e8b7abb07bfd1e78d9bf456aa6cb70b47bc.tar.gz gcc-13719e8b7abb07bfd1e78d9bf456aa6cb70b47bc.tar.bz2 |
mips.md (extended_mips16): Remove branch case.
gcc/
* config/mips/mips.md (extended_mips16): Remove branch case.
(length): Remove duplicated extended_mips16 test.
From-SVN: r199078
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b005445..af73839 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2013-05-19 Richard Sandiford <rdsandiford@googlemail.com> + * config/mips/mips.md (extended_mips16): Remove branch case. + (length): Remove duplicated extended_mips16 test. + +2013-05-19 Richard Sandiford <rdsandiford@googlemail.com> + * config/mips/t-sde: Don't build 64-bit microMIPS multilibs. 2013-05-18 Richard Sandiford <rdsandiford@googlemail.com> diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 6b0e686..8d38a77 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -407,7 +407,6 @@ ;; Is this an extended instruction in mips16 mode? (define_attr "extended_mips16" "no,yes" (if_then_else (ior (eq_attr "move_type" "sll0") - (eq_attr "type" "branch") (eq_attr "jal" "direct")) (const_string "yes") (const_string "no"))) @@ -586,10 +585,6 @@ (const_int 32) ] (const_int 48)) - (and (eq_attr "extended_mips16" "yes") - (match_test "TARGET_MIPS16")) - (const_int 8) - ;; "Ghost" instructions occupy no space. (eq_attr "type" "ghost") (const_int 0) |