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