dawn-cmake/test/tint/bug/tint/1321.wgsl.expected.msl
Antonio Maiorano 93baaae60b PromoteSideEffectsToDecl: add to 4 backends and regen tests
Added to hlsl, msl, glsl, and spirv backends.

Bug: tint:1300
Change-Id: I06062bd8e4b32acbc4a8670b060a7a22bc1ae034
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/80600
Reviewed-by: Ben Clayton <bclayton@google.com>
Reviewed-by: James Price <jrprice@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
2022-03-15 15:35:13 +00:00

23 lines
341 B
Plaintext

#include <metal_stdlib>
using namespace metal;
int foo() {
return 1;
}
struct tint_array_wrapper {
float arr[4];
};
fragment void tint_symbol() {
tint_array_wrapper arr = {.arr={}};
int const tint_symbol_1 = foo();
int const a_save = tint_symbol_1;
for(; ; ) {
float const x = arr.arr[a_save];
break;
}
return;
}