expr.cpp revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
1// RUN: %clang_cc1 -emit-llvm -x c++ < %s
2
3void test0(int x) {
4          if (x != 0) return;
5}
6
7
8// PR5211
9void test1() {
10  char *xpto;
11  while ( true && xpto[0] );
12}
13