freebsd-dev/test/CodeGenCXX/expr.cpp
2010-01-01 10:34:51 +00:00

13 lines
167 B
C++

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