aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr39614-1.c
blob: a9559c73ad3676ea337bc88833e9c4c8ad760516 (plain)
1
2
3
4
5
6
7
typedef struct page {
 unsigned long flags;
} mem_map_t;
static inline void set_page_zone(struct page *page, unsigned long zone_num)
{
 page->flags &= ~(~0UL << (64 - 8));
}