blob: 85f1063e0500eb58df7c1fead4fd32e32866ef6f [file] [log] [blame]
[numthreads(1, 1, 1)]
void f() {
float3 a = float3(1.0f, 2.0f, 3.0f);
float b = 0.0f;
const float3 r = (a / (b + b));
return;
}