diff options
author | Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> | 2013-01-21 10:45:05 +0000 |
---|---|---|
committer | Ramana Radhakrishnan <ramana@gcc.gnu.org> | 2013-01-21 10:45:05 +0000 |
commit | 8e87740bab19968c43702431614b239c27a4dc02 (patch) | |
tree | dc89103c05ba2b936e70b895ce8d103ab7c14f37 /gcc | |
parent | 1f6bc337e44710fba30a48769577133f32ab43a5 (diff) | |
download | gcc-8e87740bab19968c43702431614b239c27a4dc02.zip gcc-8e87740bab19968c43702431614b239c27a4dc02.tar.gz gcc-8e87740bab19968c43702431614b239c27a4dc02.tar.bz2 |
Fix up wrong marvell-pj4.md file committed earlier and update copyright year.
2013-01-21 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/56058
* config/arm/marvell-pj4.md: Update copyright year.
Fix up use of alu to alu_reg and simple_alu_imm.
From-SVN: r195332
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/arm/marvell-pj4.md | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7201776..5541e02 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-01-21 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> + + PR target/56058 + * config/arm/marvell-pj4.md: Update copyright year. + Fix up use of alu to alu_reg and simple_alu_imm. + 2012-01-21 Uros Bizjak <ubizjak@gmail.com> * config/i386/i386.md (enabled): Do not disable fma4 for TARGET_FMA. diff --git a/gcc/config/arm/marvell-pj4.md b/gcc/config/arm/marvell-pj4.md index 8f6d315..55b31f7 100644 --- a/gcc/config/arm/marvell-pj4.md +++ b/gcc/config/arm/marvell-pj4.md @@ -1,5 +1,5 @@ ;; Marvell ARM Processor Pipeline Description -;; Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. +;; Copyright (C) 2010-2013 Free Software Foundation, Inc. ;; Contributed by Marvell. ;; This file is part of GCC. @@ -41,28 +41,28 @@ (define_insn_reservation "pj4_alu_e1" 1 (and (eq_attr "tune" "marvell_pj4") - (eq_attr "type" "alu") + (eq_attr "type" "simple_alu_imm,alu_reg") (not (eq_attr "conds" "set")) (eq_attr "insn" "mov,mvn")) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)") (define_insn_reservation "pj4_alu_e1_conds" 4 (and (eq_attr "tune" "marvell_pj4") - (eq_attr "type" "alu") + (eq_attr "type" "simple_alu_imm,alu_reg") (eq_attr "conds" "set") (eq_attr "insn" "mov,mvn")) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)") (define_insn_reservation "pj4_alu" 1 (and (eq_attr "tune" "marvell_pj4") - (eq_attr "type" "alu") + (eq_attr "type" "simple_alu_imm,alu_reg") (not (eq_attr "conds" "set")) (not (eq_attr "insn" "mov,mvn"))) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)") (define_insn_reservation "pj4_alu_conds" 4 (and (eq_attr "tune" "marvell_pj4") - (eq_attr "type" "alu") + (eq_attr "type" "simple_alu_imm,alu_reg") (eq_attr "conds" "set") (not (eq_attr "insn" "mov,mvn"))) "pj4_is,(pj4_alu1,pj4_w1+pj4_cp)|(pj4_alu2,pj4_w2+pj4_cp)") |