nir: Fix comment above nir_convert_from_ssa() prototype.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 8 Jul 2015 08:57:00 +0000 (01:57 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 8 Jul 2015 18:28:08 +0000 (11:28 -0700)
Connor renamed the parameter, inverting the sense.
Update the comment accordingly.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
src/glsl/nir/nir.h

index 4cb7d2f1eac54f88475edeb881b53342e772fb32..9e2a281919999119552fb6a5d81d6ca3e0a23a02 100644 (file)
@@ -1659,9 +1659,9 @@ bool nir_ssa_defs_interfere(nir_ssa_def *a, nir_ssa_def *b);
 void nir_convert_to_ssa_impl(nir_function_impl *impl);
 void nir_convert_to_ssa(nir_shader *shader);
 
-/* If convert_everything is true, convert all values (even those not involved
- * in a phi node) to registers. If false, only convert SSA values involved in
- * phi nodes to registers.
+/* If phi_webs_only is true, only convert SSA values involved in phi nodes to
+ * registers.  If false, convert all values (even those not involved in a phi
+ * node) to registers.
  */
 void nir_convert_from_ssa(nir_shader *shader, bool phi_webs_only);