minix/external/bsd/llvm/dist/clang/test/SemaCXX/Inputs/array-bounds-system-header.h
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

11 lines
285 B
C

// "System header" for testing that -Warray-bounds is properly suppressed in
// certain cases.
#define BAD_MACRO_1 \
int i[3]; \
i[3] = 5
#define BAD_MACRO_2(_b, _i) \
(_b)[(_i)] = 5
#define QUESTIONABLE_MACRO(_a) \
sizeof(_a) > 3 ? (_a)[3] = 5 : 5
#define NOP(x) (x)