blob: b36e03a744ace6d5e840aab5fcc602a2d8975b8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* 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;
};
int
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;
}
|