blob: b539aac9e04f6d0a7e82147ff74184a33c2d12d1 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct frexp_result_f32 {
float fract;
int exp;
};
kernel void tint_symbol() {
frexp_result_f32 const res = frexp_result_f32{.fract=0.625f, .exp=1};
float const fract = res.fract;
int const exp = res.exp;
return;
}