Antonio Maiorano 7494e10f91 tint: const eval of countTrailingZeros
Bug: tint:1581
Change-Id: I2967ea1d6f3f297c03795bddd0e26abcccd57184
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/107700
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-10-29 14:02:38 +00:00

34 lines
588 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void countTrailingZeros_d2b4a0() {
uint4 res = uint4(0u);
}
struct tint_symbol {
float4 value [[position]];
};
float4 vertex_main_inner() {
countTrailingZeros_d2b4a0();
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() {
countTrailingZeros_d2b4a0();
return;
}
kernel void compute_main() {
countTrailingZeros_d2b4a0();
return;
}