blob: 63b44aec83600fb38da634b7c518d7e15cc31ba0 [file] [log] [blame]
SKIP: FAILED
struct frexp_result_f32 {
float fract;
int exp;
};
[numthreads(1, 1, 1)]
void main() {
float runtime_in = 1.25f;
frexp_result_f32 res = {0.625f, 1};
frexp_result_f32 v = frexp(runtime_in);
res = v;
frexp_result_f32 v_1 = {0.625f, 1};
res = v_1;
float fract = res.fract;
int exp = res.exp;
}
FXC validation failure:
<scrubbed_path>(11,24-40): error X3013: 'frexp': no matching 1 parameter intrinsic function
<scrubbed_path>(11,24-40): error X3013: Possible intrinsic functions are:
<scrubbed_path>(11,24-40): error X3013: frexp(float|half, out float|half exp)