blob: 281cc002d071304dc14ba862fd6cc1723a46fae0 [file] [log] [blame]
@compute @workgroup_size(1)
fn main() {
const in = 1.25;
let res = frexp(in);
let fract : f32 = res.fract;
let exp : i32 = res.exp;
}