dawn-cmake/test/tint/bug/tint/1321.wgsl.expected.glsl
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

24 lines
318 B
GLSL

#version 310 es
precision mediump float;
int foo() {
return 1;
}
void tint_symbol() {
float arr[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
int tint_symbol_1 = foo();
int a_save = tint_symbol_1;
{
for(; ; ) {
float x = arr[a_save];
break;
}
}
}
void main() {
tint_symbol();
return;
}