blob: 80904c9c6a875150d9c5bfedc5d0fe00895c520d [file] [log] [blame]
fn bitcast_16cba4() {
var arg_0 = 1.0f;
var res : i32 = bitcast<i32>(arg_0);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : i32;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
bitcast_16cba4();
return vec4<f32>();
}
@fragment
fn fragment_main() {
bitcast_16cba4();
}
@compute @workgroup_size(1)
fn compute_main() {
bitcast_16cba4();
}