dawn-cmake/test/tint/statements/compound_assign/for_loop.wgsl.expected.msl
James Price 60107e7435 msl: Implement compound assignment
Use the ExpandCompoundAssignment transform to convert compound
assignments to regular assignments.

Bug: tint:1325
Change-Id: I960bf6cd0ec3490cd58685a7c13b6a7c86395080
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/85283
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-03-31 22:30:10 +00:00

51 lines
1.1 KiB
Plaintext

#include <metal_stdlib>
using namespace metal;
struct S {
int a;
float4 b;
float2x2 c;
};
int idx1(thread uint* const tint_symbol_5) {
*(tint_symbol_5) = (*(tint_symbol_5) + 1u);
return 1;
}
int idx2(thread uint* const tint_symbol_6) {
*(tint_symbol_6) = (*(tint_symbol_6) + 2u);
return 1;
}
int idx3(thread uint* const tint_symbol_7) {
*(tint_symbol_7) = (*(tint_symbol_7) + 3u);
return 1;
}
struct tint_array_wrapper {
float arr[4];
};
void foo(thread uint* const tint_symbol_8) {
tint_array_wrapper a = {.arr={}};
int const tint_symbol_2 = idx1(tint_symbol_8);
int const tint_symbol_save = tint_symbol_2;
{
a.arr[tint_symbol_save] = (a.arr[tint_symbol_save] * 2.0f);
while (true) {
int const tint_symbol_3 = idx2(tint_symbol_8);
if (!((a.arr[tint_symbol_3] < 10.0f))) {
break;
}
{
}
{
int const tint_symbol_4 = idx3(tint_symbol_8);
int const tint_symbol_1_save = tint_symbol_4;
a.arr[tint_symbol_1_save] = (a.arr[tint_symbol_1_save] + 1.0f);
}
}
}
}