freebsd-dev/test/CodeGenCXX/expr.cpp
2009-10-23 14:22:18 +00:00

13 lines
165 B
C++

// RUN: clang-cc -emit-llvm -x c++ < %s
void test0(int x) {
if (x != 0) return;
}
// PR5211
void test1() {
char *xpto;
while ( true && xpto[0] );
}