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