blob: 14bfe138f308ea61fad583e1825b143d6121673c [file] [log] [blame]
Chris Lattner3da2db42007-10-29 04:26:44 +00001// RUN: clang -fsyntax-only %s -verify
2
3typedef struct { unsigned long bits[(((1) + (64) - 1) / (64))]; } cpumask_t;
4cpumask_t x;
5void foo() {
6 (void)x;
7}
8