diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /gcc/gcc-3.4.0/gcc34-reverse-compare.patch | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'gcc/gcc-3.4.0/gcc34-reverse-compare.patch')
-rw-r--r-- | gcc/gcc-3.4.0/gcc34-reverse-compare.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc/gcc-3.4.0/gcc34-reverse-compare.patch b/gcc/gcc-3.4.0/gcc34-reverse-compare.patch deleted file mode 100644 index c3c40dd183..0000000000 --- a/gcc/gcc-3.4.0/gcc34-reverse-compare.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- gcc-3.4.0/gcc/flow.c.reverse-compare 2004-02-27 22:39:19.000000000 -0500 -+++ gcc-3.4.0/gcc/flow.c 2004-04-24 16:36:00.000000000 -0400 -@@ -1843,6 +1843,7 @@ - regset_head diff_head; - regset diff = INITIALIZE_REG_SET (diff_head); - basic_block bb_true, bb_false; -+ enum rtx_code reversed_code; - int i; - - /* Identify the successor blocks. */ -@@ -1889,8 +1890,11 @@ - if (GET_CODE (reg) == REG - && XEXP (cond_true, 1) == const0_rtx) - { -- rtx cond_false -- = gen_rtx_fmt_ee (reverse_condition (GET_CODE (cond_true)), -+ rtx cond_false; -+ reversed_code = reverse_condition (GET_CODE (cond_true)); -+ if (reversed_code == UNKNOWN) -+ goto skip; -+ cond_false = gen_rtx_fmt_ee (reversed_code, - GET_MODE (cond_true), XEXP (cond_true, 0), - XEXP (cond_true, 1)); - if (GET_CODE (XEXP (set_src, 1)) == PC) -@@ -1925,6 +1929,7 @@ - } - } - -+ skip: - FREE_REG_SET (diff); - } - #endif |