Commit eab3f92e by Jie Zhang Committed by Jie Zhang

cortex-a8.md (cortex_a8_alu): Don't use cortex_a8_default when neon_type is not none.

	* config/arm/cortex-a8.md (cortex_a8_alu): Don't use
	cortex_a8_default when neon_type is not none.

From-SVN: r162182
parent 402464a0
2010-07-14 Jie Zhang <jie@codesourcery.com>
* config/arm/cortex-a8.md (cortex_a8_alu): Don't use
cortex_a8_default when neon_type is not none.
2010-07-14 Bernd Schmidt <bernds@codesourcery.com>
* lower-subreg.c (subreg_context): New static bitmap.
......
......@@ -87,8 +87,9 @@
;; (source read in E2 and destination available at the end of that cycle).
(define_insn_reservation "cortex_a8_alu" 2
(and (eq_attr "tune" "cortexa8")
(ior (and (eq_attr "type" "alu")
(not (eq_attr "insn" "mov,mvn")))
(ior (and (and (eq_attr "type" "alu")
(eq_attr "neon_type" "none"))
(not (eq_attr "insn" "mov,mvn")))
(eq_attr "insn" "clz")))
"cortex_a8_default")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment