blob: 695bc22d2b1b9b050a2564e604e53bf2b6ca8e70 [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;
}