blob: d41f2caae3e1fc02a60008e85f99fc6c5d6a721b [file] [log] [blame]
struct modf_result_f32 {
float fract;
float whole;
};
[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void foo() {
modf_result_f32 s1 = (modf_result_f32)0;
}