diff options
author | Kenneth Graunke <[email protected]> | 2011-09-20 18:08:11 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-04-02 14:15:43 -0700 |
commit | 82065fa20ee3f2880a070f1f4f75509b910cedde (patch) | |
tree | bceb87a9745496accbec6e71a96be2873231ea0a /src/glsl/ir.cpp | |
parent | d884f60861f270cdcf7d9d47765efcf1e1de30b6 (diff) |
glsl: Remove ir_call::get_callee() and set_callee().
Previously, set_callee() performed some assertions about the type of the
ir_call; protecting the bare pointer ensured these checks would be run.
However, ir_call no longer has a type, so the getter and setter methods
don't actually do anything useful. Remove them in favor of accessing
callee directly, as is done with most other fields in our IR.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/ir.cpp')
-rw-r--r-- | src/glsl/ir.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 3595e742f78..1ba87515ea7 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -1467,11 +1467,6 @@ ir_rvalue::error_value(void *mem_ctx) return v; } -void -ir_call::set_callee(ir_function_signature *sig) -{ - this->callee = sig; -} void visit_exec_list(exec_list *list, ir_visitor *visitor) |