blob: b90d86b12db27a702da9f43221698ba8a2550153 [file] [log] [blame]
@compute @workgroup_size(1)
fn main() {
let res = frexp(1.23);
let exp : i32 = res.exp;
let fract : f32 = res.fract;
}