blob: 27cbc536f8abea8b702dc658b25ab780cfb5ee6e [file] [log] [blame]
fn acosh_3433e8() {
const arg_0 = 1.54308063479999990619;
var res = acosh(arg_0);
}
@fragment
fn fragment_main() {
acosh_3433e8();
}
@compute @workgroup_size(1)
fn compute_main() {
acosh_3433e8();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
acosh_3433e8();
return out;
}