aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cc/cc_tools/arm.md.diff
blob: 5e6571b797f97ce558421db44699cc2154b722b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$FreeBSD: src/gnu/usr.bin/cc/cc_tools/arm.md.diff,v 1.2.14.1 2010/12/21 17:10:29 kensmith Exp $
Index: arm.md
===================================================================
RCS file: /cognet/ncvs/src/contrib/gcc/config/arm/arm.md,v
retrieving revision 1.1.1.7
diff -u -p -r1.1.1.7 arm.md
--- arm.md	3 Jun 2005 03:28:42 -0000	1.1.1.7
+++ arm.md	6 Nov 2006 02:44:36 -0000
@@ -8840,7 +8840,7 @@
       val2 = INTVAL (XEXP (XEXP (operands[3], 0), 1));
     arith[0] = operands[0];
     arith[3] = operands[1];
-    if (val1 < val2)
+    if (val1 <= val2)
       {
 	arith[1] = ldm[1];
 	arith[2] = ldm[2];
@@ -8870,7 +8870,7 @@
 	else
 	  output_asm_insn (\"ldm%?ia\\t%0, {%1, %2}\", ldm);
       }
-    else
+    else if (val2)
       {
 	ldm[0] = XEXP (operands[2], 0);
 	if (val1 < val2)
@@ -8878,6 +8878,14 @@
 	else
 	  output_asm_insn (\"ldm%?da\\t%0, {%1, %2}\", ldm);
       }
+   else {
+	ldm[0] = operands[0];
+	ldm[1] = XEXP(operands[2], 0);
+	output_asm_insn(\"ldr\\t%0, [%1]\", ldm);
+	ldm[0] = operands[4];
+	ldm[1] = XEXP(operands[3], 0);
+	output_asm_insn(\"ldr\\t%0, [%1]\", ldm);
+   }
     output_asm_insn (\"%I3%?\\t%0, %1, %2\", arith);
     return \"\";
   }"