dawn-cmake/test/tint/builtins/gen/literal/reverseBits/e31adf.wgsl.expected.fxc.hlsl
Antonio Maiorano 6fcc4f3a54 tint: const eval of reverseBits
Bug: tint:1581
Change-Id: I3dd1ea2c774f9fc0dff87b71f25375a469c3d05e
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/108300
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-11-04 13:48:26 +00:00

31 lines
523 B
HLSL

void reverseBits_e31adf() {
uint res = 2147483648u;
}
struct tint_symbol {
float4 value : SV_Position;
};
float4 vertex_main_inner() {
reverseBits_e31adf();
return (0.0f).xxxx;
}
tint_symbol vertex_main() {
const float4 inner_result = vertex_main_inner();
tint_symbol wrapper_result = (tint_symbol)0;
wrapper_result.value = inner_result;
return wrapper_result;
}
void fragment_main() {
reverseBits_e31adf();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
reverseBits_e31adf();
return;
}