Commit 52d09406 by David Edelsohn Committed by David Edelsohn

re PR target/27282 (ICE in final_scan_insn, at final.c:2448 - could not split insn)

        PR middle-end/27282
        * gcc.c-torture/compile/pr27282.c: New test

From-SVN: r113278
parent 3bf7d5e7
2006-04-26 David Edelsohn <edelsohn@gnu.org>
PR middle-end/27282
* gcc.c-torture/compile/pr27282.c: New test.
2006-04-26 Jakub Jelinek <jakub@redhat.com> 2006-04-26 Jakub Jelinek <jakub@redhat.com>
PR middle-end/26913 PR middle-end/26913
/* This test used to ICE on PowerPC at -O due to combine GEN_INT bug. */
typedef struct _ColRowInfo ColRowInfo;
typedef struct { }
GnmSheetRange;
struct _ColRowInfo
{
float size_pts;
unsigned margin_a:3;
unsigned margin_b:3;
unsigned visible:1;
};
colrow_equal (ColRowInfo const *a, ColRowInfo const *b)
{
return a->size_pts == b->size_pts && a->margin_a == b->margin_a
&& a->visible == b->visible;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment