summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2003-11-18-CondExprLValue.c
blob: 62968e5fbfc9af6ff65ea1d804dd5cf62d9d4d4d (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null

typedef struct { unsigned long pgprot; } pgprot_t;

void split_large_page(unsigned long addr, pgprot_t prot)
{
  (addr ? prot : ((pgprot_t) { 0x001 } )).pgprot;
}