~ubuntu-branches/debian/sid/gcc-4.8/sid

« back to all changes in this revision

Viewing changes to .svn/pristine/b6/b68a0308be05084f338f64202c5bdec798bb0408.svn-base

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-12-19 19:48:34 UTC
  • Revision ID: package-import@ubuntu.com-20141219194834-4dz1q7rrn5pad823
Tags: 4.8.4-1
* GCC 4.8.4 release.
  - Fix PR target/61407 (darwin), PR middle-end/58624 (ice),
    PR sanitizer/64265 (wrong code).
* Require recent binutils to pass go test failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# DP: Fix PR target/61208 (ARM) for the Linaro branch, taken from the trunk.
 
2
 
 
3
Index: b/src/gcc/config/arm/arm.md
 
4
===================================================================
 
5
--- a/src/gcc/config/arm/arm.md
 
6
+++ b/src/gcc/config/arm/arm.md
 
7
@@ -8480,8 +8480,8 @@
 
8
 
 
9
 (define_insn_and_split "*arm_cmpdi_unsigned"
 
10
   [(set (reg:CC_CZ CC_REGNUM)
 
11
-        (compare:CC_CZ (match_operand:DI 0 "s_register_operand" "l,r,r")
 
12
-                       (match_operand:DI 1 "arm_di_operand"     "Py,r,rDi")))]
 
13
+        (compare:CC_CZ (match_operand:DI 0 "s_register_operand" "l,r,r,r")
 
14
+                       (match_operand:DI 1 "arm_di_operand"     "Py,r,Di,rDi")))]
 
15
 
 
16
   "TARGET_32BIT"
 
17
   "#"   ; "cmp\\t%R0, %R1\;it eq\;cmpeq\\t%Q0, %Q1"
 
18
@@ -8501,9 +8501,9 @@
 
19
     operands[1] = gen_lowpart (SImode, operands[1]);
 
20
   }
 
21
   [(set_attr "conds" "set")
 
22
-   (set_attr "enabled_for_depr_it" "yes,yes,no")
 
23
-   (set_attr "arch" "t2,t2,*")
 
24
-   (set_attr "length" "6,6,8")]
 
25
+   (set_attr "enabled_for_depr_it" "yes,yes,no,*")
 
26
+   (set_attr "arch" "t2,t2,t2,a")
 
27
+   (set_attr "length" "6,6,10,8")
 
28
 )
 
29
 
 
30
 (define_insn "*arm_cmpdi_zero"