blob: c46c16ab95304e7686f857ae23c0296e854524a6 [file] [log] [blame] [edit]
SKIP: FAILED
struct frexp_result_f32 {
float fract;
int exp;
};
[numthreads(1, 1, 1)]
void main() {
float tint_symbol = 1.25f;
frexp_result_f32 v = frexp(tint_symbol);
frexp_result_f32 res = v;
float fract = res.fract;
frexp_result_f32 v_1 = v;
int exp = v_1.exp;
}
FXC validation failure:
<scrubbed_path>(10,24-41): error X3013: 'frexp': no matching 1 parameter intrinsic function
<scrubbed_path>(10,24-41): error X3013: Possible intrinsic functions are:
<scrubbed_path>(10,24-41): error X3013: frexp(float|half, out float|half exp)
tint executable returned error: exit status 1