------- Comment #11 from bonzini at gnu dot org 2009-06-30 16:53 ------- Subject: Re: Powerpc bootstrap is broken due to changes in expmed.c
What happens with this patch? Index: expmed.c =================================================================== --- expmed.c (revision 149106) +++ expmed.c (working copy) @@ -5307,7 +5307,7 @@ OPTAB_DIRECT); if (op0both != 0) - return emit_store_flag (target, code, op0both, op1, word_mode, + return emit_store_flag (NULL_RTX, code, op0both, op1, word_mode, unsignedp, normalizep); } else if ((code == LT || code == GE) && op1 == const0_rtx) @@ -5318,7 +5318,7 @@ op0h = simplify_gen_subreg (word_mode, op0, mode, subreg_highpart_offset (word_mode, mode)); - return emit_store_flag (target, code, op0h, op1, word_mode, + return emit_store_flag (NULL_RTX, code, op0h, op1, word_mode, unsignedp, normalizep); } } (I'll see tonight if it cures also Michael's failures). -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40597