1/* This test used to ICE on PowerPC at -O due to combine GEN_INT bug.  */
2typedef struct _ColRowInfo ColRowInfo;
3typedef struct { }
4GnmSheetRange;
5struct _ColRowInfo
6{
7  float size_pts;
8  unsigned margin_a:3;
9  unsigned margin_b:3;
10  unsigned visible:1;
11};
12colrow_equal (ColRowInfo const *a, ColRowInfo const *b)
13{
14  return a->size_pts == b->size_pts && a->margin_a == b->margin_a
15    && a->visible == b->visible;
16}
17
18