nir: simplify does_varying_match()
[mesa.git] / src / compiler / nir / nir_linking_helpers.c
index fa3ccaaa2da4a9d2707510110ad0092509d86abf..f2e8ec94ad966625521dc220b6b414d22f15ba9b 100644 (file)
@@ -563,11 +563,8 @@ nir_link_xfb_varyings(nir_shader *producer, nir_shader *consumer)
 static bool
 does_varying_match(nir_variable *out_var, nir_variable *in_var)
 {
-   if (in_var->data.location == out_var->data.location &&
-       in_var->data.location_frac == out_var->data.location_frac)
-      return true;
-
-   return false;
+   return in_var->data.location == out_var->data.location &&
+          in_var->data.location_frac == out_var->data.location_frac;
 }
 
 static nir_variable *