mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 18:30:55 -05:00
12 lines
167 B
C++
12 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] );
|
|
}
|