diff options
author | Matt Turner <[email protected]> | 2014-06-23 22:05:03 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-06-25 13:00:51 -0700 |
commit | aca4a951ea2bab855bcc2491a3b8996b54639ebd (patch) | |
tree | e259f636d0cf64d451fdba403c45cb9545dc41e8 | |
parent | 46659d46a8c2f7bbc8deb472faff2dccbde92d29 (diff) |
i965/fs: Make try_constant_propagate() static.
Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 1 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 0da79ba1c4e..af8b0b9030d 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -373,7 +373,6 @@ public: bool opt_cse_local(bblock_t *block, exec_list *aeb); bool opt_copy_propagate(); bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry); - bool try_constant_propagate(fs_inst *inst, acp_entry *entry); bool opt_copy_propagate_local(void *mem_ctx, bblock_t *block, exec_list *acp); void opt_drop_redundant_mov_to_flags(); diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp index 0a7b8b8952a..28c6ca7ac29 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp @@ -367,8 +367,8 @@ fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry) } -bool -fs_visitor::try_constant_propagate(fs_inst *inst, acp_entry *entry) +static bool +try_constant_propagate(fs_inst *inst, acp_entry *entry) { bool progress = false; |