aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/if-empty-body.c
blob: b28c1cdce962f4cb97f5e4d9f73ad6a351951ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: %clang_cc1 -fsyntax-only -verify %s

void f1(int a) {
    if (a); // expected-warning {{if statement has empty body}}
}

void f2(int a) {
    if (a) {}
}

void f3() {
  if (1)
    xx;      // expected-error {{use of undeclared identifier}}
  return;    // no empty body warning.
}

// Don't warn about an empty body if is expanded from a macro.
void f4(int i) {
  #define BODY ;
  if (i == i) // expected-warning{{self-comparison always evaluates to true}}
    BODY
  #undef BODY
}