diff options
author | Vinson Lee <[email protected]> | 2012-04-26 21:27:37 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2012-04-28 14:00:36 -0700 |
commit | e372aa69494469d6c43c315b5c39355dece65dcf (patch) | |
tree | 93f4c2e005bda413fd1f19015e8a48bd6491c72d /src/glsl/opt_dead_functions.cpp | |
parent | b443ca96a55a06ee215a3f9a9e7dba558deeb58c (diff) |
glsl: Remove unused member predicate from ir_dead_functions_visitor.
Fix uninitialized pointer field defect reported by Coverity.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/opt_dead_functions.cpp')
-rw-r--r-- | src/glsl/opt_dead_functions.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/glsl/opt_dead_functions.cpp b/src/glsl/opt_dead_functions.cpp index 017a28639b8..f503493957b 100644 --- a/src/glsl/opt_dead_functions.cpp +++ b/src/glsl/opt_dead_functions.cpp @@ -62,8 +62,6 @@ public: signature_entry *get_signature_entry(ir_function_signature *var); - bool (*predicate)(ir_instruction *ir); - /* List of signature_entry */ exec_list signature_list; void *mem_ctx; |