blob: f30ed21699efbfff2388a3fabffe5703668a0995 [file] [log] [blame]
fn atanh_c5dc32() {
var res = atanh(0.5);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atanh_c5dc32();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atanh_c5dc32();
}
@compute @workgroup_size(1)
fn compute_main() {
atanh_c5dc32();
}