blob: 316f3560ca0508d5a1c19fb06af4c28a5179b13f [file] [log] [blame]
fn ldexp_2bfc68() {
const arg_0 = vec2(1.0);
var arg_1 = vec2<i32>(1i);
var res = ldexp(arg_0, arg_1);
}
@fragment
fn fragment_main() {
ldexp_2bfc68();
}
@compute @workgroup_size(1)
fn compute_main() {
ldexp_2bfc68();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
ldexp_2bfc68();
return out;
}