summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/expressions.cpp
blob: 95ece48e51feb2dd15115b649440a0417dd276f9 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// RUN: %clang_cc1 -fsyntax-only -verify %s 

void choice(int);
int choice(bool);

void test() {
  // Result of ! must be type bool.
  int i = choice(!1);
}

// rdar://8018252
void f0() {
  extern void f0_1(int*);
  register int x;
  f0_1(&x);
}

namespace test1 {
  template <class T> void bar(T &x) { T::fail(); }
  template <class T> void bar(volatile T &x) {}

  void test_ints() {
    volatile int x;
    bar(x = 5);
    bar(x += 5);
  }

  enum E { E_zero };
  void test_enums() {
    volatile E x;
    bar(x = E_zero);
    bar(x += E_zero); // expected-error {{incompatible type}}
  }
}

int test2(int x) {
  return x && 4; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}

  return x && sizeof(int) == 4;  // no warning, RHS is logical op.
  return x && true;
  return x && false;
  return x || true;
  return x || false;

  return x && (unsigned)0; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}

  return x || (unsigned)1; // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}

  return x || 0; // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || 1; // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || -1; // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || 5; // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x && 0; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && 1; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && -1; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && 5; // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x || (0); // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || (1); // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || (-1); // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x || (5); // expected-warning {{use of logical || with constant operand; switch to bitwise | or remove constant}}
  return x && (0); // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && (1); // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && (-1); // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
  return x && (5); // expected-warning {{use of logical && with constant operand; switch to bitwise & or remove constant}}
}
OpenPOWER on IntegriCloud