diff options
author | Dave Airlie <[email protected]> | 2017-06-08 13:27:46 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-08 13:29:29 +1000 |
commit | cb2a13e895adbbaa3a759abdcf6fbb89bb1523fe (patch) | |
tree | 98b14a7ed948004b022578c647361c9d35a0a3a1 /src | |
parent | f4b5510872b94a434a5223e35a67db322aad5e8b (diff) |
st_glsl_to_tgsi: cleanup variable storage search.
I forgot to put the cleanup in earlier.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index a0d593df924..c5d2e0fcd2f 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -1310,15 +1310,13 @@ glsl_to_tgsi_visitor::get_temp(const glsl_type *type) variable_storage * glsl_to_tgsi_visitor::find_variable_storage(ir_variable *var) { - struct hash_entry *entry = _mesa_hash_table_search(this->variables, - var); - variable_storage *storage; + struct hash_entry *entry; + + entry = _mesa_hash_table_search(this->variables, var); if (!entry) return NULL; - storage = (variable_storage *)entry->data; - - return storage; + return (variable_storage *)entry->data; } void |