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