blob: 62968e5fbfc9af6ff65ea1d804dd5cf62d9d4d4d [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3typedef struct { unsigned long pgprot; } pgprot_t;
4
5void split_large_page(unsigned long addr, pgprot_t prot)
6{
7 (addr ? prot : ((pgprot_t) { 0x001 } )).pgprot;
8}
9