summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/cxx-condition.cpp
blob: 330a17a10a43dcc2eb4df9885454f58243f69277 (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -emit-llvm %s -o %t

void f() {
  int a;
  if (int x=a) ++a; else a=x;
  while (int x=a) ++a;
  for (; int x=a; --a) ;
  switch (int x=0) { }
}