2022-01-06 21:32:41 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S {
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
|
|
|
void f() {
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
[loop] while (true) {
|
2022-09-13 17:32:17 +00:00
|
|
|
if (true) {
|
2022-01-14 17:16:32 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-02-02 14:33:32 +00:00
|
|
|
{
|
|
|
|
}
|
2022-01-06 21:32:41 +00:00
|
|
|
{
|
|
|
|
const S tint_symbol = {1};
|
|
|
|
i = (i + tint_symbol.i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|