dawn-cmake/test/tint/builtins/gen/literal/reverseBits/c21bc1.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
573 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void reverseBits_c21bc1() {
int3 res = int3((-2147483647 - 1));
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
reverseBits_c21bc1();
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_c21bc1();
return;
}
kernel void compute_main() {
reverseBits_c21bc1();
return;
}