blob: a927527e46f368d877a098106709e0ca8d024c6a [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.61500000953674316406f, .exp=1};
int const exp = res.exp;
float const fract = res.fract;
return;
}