1 /* This test used to ICE on PowerPC at -O due to combine GEN_INT bug.  */
2 typedef struct _ColRowInfo ColRowInfo;
3 typedef struct { }
4 GnmSheetRange;
5 struct _ColRowInfo
6 {
7   float size_pts;
8   unsigned margin_a:3;
9   unsigned margin_b:3;
10   unsigned visible:1;
11 };
colrow_equal(ColRowInfo const * a,ColRowInfo const * b)12 colrow_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