glsl: Fix dependencies / linkage for glsl_compiler
[mesa.git] / src / glsl / lower_variable_index_to_cond_assign.cpp
index 147a6aea1ef7ce706451702cabe9067f182afb7b..8eb1612f0a0da921fb6e3ee30b8bd56e211b4ef5 100644 (file)
@@ -255,6 +255,7 @@ public:
       case ir_var_uniform:
         return this->lower_uniforms;
       case ir_var_in:
+      case ir_var_const_in:
         return (var->location == -1) ? this->lower_temps : this->lower_inputs;
       case ir_var_out:
         return (var->location == -1) ? this->lower_temps : this->lower_outputs;