This reverts commit d618f1c3b12effd0c2bdb7d02108d3551f389d3d. This commit wasn't reviewed ahead of time and significant concerns were raised immediately after it landed. According to our developer policy this warrants immediate revert of the commit. https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy Differential Revision: https://reviews.llvm.org/D155509
77 lines
887 B
C
77 lines
887 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
int bar(void);
|
|
int test0(void) {
|
|
int i;
|
|
i = 1 + 2;
|
|
do {
|
|
i = bar();
|
|
i = bar();
|
|
} while(0);
|
|
return i;
|
|
}
|
|
|
|
|
|
int test1(void) {
|
|
int i;
|
|
i = 1 + 2;
|
|
do {
|
|
i = bar();
|
|
if (i == 42)
|
|
break;
|
|
i = bar();
|
|
} while(1);
|
|
return i;
|
|
}
|
|
|
|
|
|
int test2(void) {
|
|
int i;
|
|
i = 1 + 2;
|
|
do {
|
|
i = bar();
|
|
if (i == 42)
|
|
continue;
|
|
i = bar();
|
|
} while(1);
|
|
return i;
|
|
}
|
|
|
|
|
|
int test3(void) {
|
|
int i;
|
|
i = 1 + 2;
|
|
do {
|
|
i = bar();
|
|
if (i == 42)
|
|
break;
|
|
} while(0);
|
|
return i;
|
|
}
|
|
|
|
|
|
int test4(void) {
|
|
int i;
|
|
i = 1 + 2;
|
|
do {
|
|
i = bar();
|
|
if (i == 42)
|
|
continue;
|
|
} while(0);
|
|
return i;
|
|
}
|
|
|
|
// rdar://6103124
|
|
void test5(void) {
|
|
do { break; } while(0);
|
|
}
|
|
|
|
// PR14191
|
|
void test6f(void);
|
|
void test6(void) {
|
|
do {
|
|
} while (test6f(), 0);
|
|
// CHECK: call {{.*}}void @test6f()
|
|
}
|
|
|