blob: 6d641dcb622db5c6e635ae465c7a31dd6037720f [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-llvm -x c++ < %s
Nuno Lopesa0abe622009-01-11 23:22:37 +00002
Chris Lattner671fec82009-10-17 04:24:20 +00003void test0(int x) {
Nuno Lopesa0abe622009-01-11 23:22:37 +00004 if (x != 0) return;
5}
Chris Lattner671fec82009-10-17 04:24:20 +00006
7
8// PR5211
9void test1() {
10 char *xpto;
11 while ( true && xpto[0] );
12}