blob: ed323d6e9436f10eeb6b14ed590056608d3662cc [file] [log] [blame]
fn countTrailingZeros_21e394() {
var arg_0 = 1u;
var res : u32 = countTrailingZeros(arg_0);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : u32;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
countTrailingZeros_21e394();
return vec4<f32>();
}
@fragment
fn fragment_main() {
countTrailingZeros_21e394();
}
@compute @workgroup_size(1)
fn compute_main() {
countTrailingZeros_21e394();
}