summaryrefslogtreecommitdiffstats
path: root/test/Analysis/conditional-op-missing-lhs.c
blob: bebf155f46405e6f3dce328ae0604d7a6e81a0c6 (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
// RUN: clang-cc -analyze -warn-dead-stores -warn-uninit-values -verify %s

void f1()
{
  int i;
  
  int j = i ? : 1; // expected-warning{{use of uninitialized variable}} //expected-warning{{Value stored to 'j' during its initialization is never read}}
}

void *f2(int *i)
{
  return i ? : 0;
}

void *f3(int *i)
{
  int a;
  
  return &a ? : i;
}

void f4()
{
  char c[1 ? : 2];
}

OpenPOWER on IntegriCloud