dawn-cmake/test/tint/builtins/gen/literal/reverseBits/e31adf.wgsl.expected.msl
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

34 lines
561 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void reverseBits_e31adf() {
uint res = 2147483648u;
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
reverseBits_e31adf();
return float4(0.0f);
}
vertex tint_symbol vertex_main() {
float4 const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.value = inner_result;
return wrapper_result;
}
fragment void fragment_main() {
reverseBits_e31adf();
return;
}
kernel void compute_main() {
reverseBits_e31adf();
return;
}