YouCompleteMe/cpp/llvm/tools/clang/test/Sema/Inputs/unused-expr-system-header.h
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

24 lines
420 B
C

// "System header" for testing that -Wunused-value is properly suppressed in
// certain cases.
#define POSSIBLY_BAD_MACRO(x) \
{ int i = x; \
i; }
#define STATEMENT_EXPR_MACRO(x) \
(__extension__ \
({int i = x; \
i;}))
#define COMMA_MACRO_1(x, y) \
{x, y;}
#define COMMA_MACRO_2(x, y) \
if (x) { 1 == 2, y; }
#define COMMA_MACRO_3(x, y) \
(x, y)
#define COMMA_MACRO_4(x, y) \
( 1 == 2, y )