Files
llvm-project/clang/test/CodeGen/dostmt.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

71 lines
723 B
C

// RUN: clang-cc %s -emit-llvm -o -
int bar();
int test0() {
int i;
i = 1 + 2;
do {
i = bar();
i = bar();
} while(0);
return i;
}
int test1() {
int i;
i = 1 + 2;
do {
i = bar();
if (i == 42)
break;
i = bar();
} while(1);
return i;
}
int test2() {
int i;
i = 1 + 2;
do {
i = bar();
if (i == 42)
continue;
i = bar();
} while(1);
return i;
}
int test3() {
int i;
i = 1 + 2;
do {
i = bar();
if (i == 42)
break;
} while(0);
return i;
}
int test4() {
int i;
i = 1 + 2;
do {
i = bar();
if (i == 42)
continue;
} while(0);
return i;
}
// rdar://6103124
void test5() {
do { break; } while(0);
}