blob: 657dfb7af87596ba3fc279d608e1e3315cdd1620 [file] [log] [blame]
fn acosh_3433e8() {
var res = acosh(2.0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
acosh_3433e8();
return vec4<f32>();
}
@fragment
fn fragment_main() {
acosh_3433e8();
}
@compute @workgroup_size(1)
fn compute_main() {
acosh_3433e8();
}