expressions: make assign_expression() take an op argument
[smatch.git] / validation / cond-address.c
blob2a69f4b922a7195d27119d55cf962844ac5f9e54
1 extern void f(void);
2 extern int a[];
4 int foo(void) { if (f) return 1; return 0; }
5 int bar(void) { if (a) return 1; return 0; }
6 int qux(void) { if (f && a) return 1; return 0; }
8 /*
9 * check-name: cond-address.c
10 * check-command: test-linearize -Wno-decl $file
11 * check-output-ignore
13 * check-excludes: VOID