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