]> git.pld-linux.org Git - packages/crossarm-gcc.git/commitdiff
This commit was manufactured by cvs2git to create branch 'GCC_4'.
authorcvs2git <feedback@pld-linux.org>
Thu, 10 Feb 2005 19:11:59 +0000 (19:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Sprout from master 2005-02-10 19:11:59 UTC PaweÅ‚ Sikora <pluto@pld-linux.org> '- spaces -> tabs.'
Delete:
    crossarm-gcc-pr15068.patch

crossarm-gcc-pr15068.patch [deleted file]

diff --git a/crossarm-gcc-pr15068.patch b/crossarm-gcc-pr15068.patch
deleted file mode 100644 (file)
index 1880d78..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
---- gcc-3.4.2/gcc/flow.c.orig  2004-02-28 04:39:19.000000000 +0100
-+++ gcc-3.4.2/gcc/flow.c       2004-09-16 19:39:39.512234032 +0200
-@@ -1878,19 +1878,23 @@
-         rtx set_src = SET_SRC (pc_set (BB_END (bb)));
-         rtx cond_true = XEXP (set_src, 0);
-         rtx reg = XEXP (cond_true, 0);
-+        enum rtx_code inv_cond;
-         if (GET_CODE (reg) == SUBREG)
-           reg = SUBREG_REG (reg);
-         /* We can only track conditional lifetimes if the condition is
--           in the form of a comparison of a register against zero.  
--           If the condition is more complex than that, then it is safe
--           not to record any information.  */
--        if (GET_CODE (reg) == REG
-+           in the form of a reversible comparison of a register against
-+           zero.  If the condition is more complex than that, then it is
-+           safe not to record any information.  */
-+
-+        inv_cond = reversed_comparison_code (cond_true, BB_END (bb));
-+        if (inv_cond != UNKNOWN
-+            && GET_CODE (reg) == REG
-             && XEXP (cond_true, 1) == const0_rtx)
-           {
-             rtx cond_false
--              = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)),
-+              = gen_rtx_fmt_ee (inv_cond,
-                                 GET_MODE (cond_true), XEXP (cond_true, 0),
-                                 XEXP (cond_true, 1));
-             if (GET_CODE (XEXP (set_src, 1)) == PC)
This page took 0.527277 seconds and 4 git commands to generate.