diff options
author | Eric Anholt <[email protected]> | 2010-11-05 06:08:45 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-11-29 17:08:27 -0800 |
commit | e8f5ebf313da3ce33ccbbcf9b72946853035fbdd (patch) | |
tree | 8709b84f862b9919410d82b4a384403e4dfa9c2c /src/glsl/ast_to_hir.cpp | |
parent | 2927b6c21202fd0f9a661665e0093e7193c5df6e (diff) |
glsl: Make the symbol table's add_function just use the function's name.
Diffstat (limited to 'src/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index d615b30e7da..1f001273195 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -2495,7 +2495,7 @@ ast_function::hir(exec_list *instructions, } } else { f = new(ctx) ir_function(name); - if (!state->symbols->add_function(f->name, f)) { + if (!state->symbols->add_function(f)) { /* This function name shadows a non-function use of the same name. */ YYLTYPE loc = this->get_location(); |