blob: aa4abe5be0759f9e970556ed88b081c8ccc9075e [file] [log] [blame]
fn frexp_64e816() {
var arg_1 : vec3<u32>;
var res : vec3<f32> = frexp(vec3<f32>(), &(arg_1));
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
frexp_64e816();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
frexp_64e816();
}
[[stage(compute)]]
fn compute_main() {
frexp_64e816();
}