diff options
author | Rob Clark <[email protected]> | 2020-05-16 12:08:26 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-19 16:06:17 +0000 |
commit | c1d33eed417a78407d0955b603085f4e521d9edf (patch) | |
tree | d2d76932d9318a02cd4fddced2fbb046b21655b1 /src/freedreno/ir3/ir3.c | |
parent | 65f604e3b3b25bb95c96062675817a3828562e26 (diff) |
freedreno/ir3: make foreach_ssa_src declar cursor ptr
Signed-off-by: Rob Clark <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5048>
Diffstat (limited to 'src/freedreno/ir3/ir3.c')
-rw-r--r-- | src/freedreno/ir3/ir3.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/freedreno/ir3/ir3.c b/src/freedreno/ir3/ir3.c index 2fe323eaf76..d575ee3ae42 100644 --- a/src/freedreno/ir3/ir3.c +++ b/src/freedreno/ir3/ir3.c @@ -1201,8 +1201,6 @@ ir3_find_ssa_uses(struct ir3 *ir, void *mem_ctx, bool falsedeps) foreach_block (block, &ir->block_list) { foreach_instr (instr, &block->instr_list) { - struct ir3_instruction *src; - foreach_ssa_src_n (src, n, instr) { if (__is_false_dep(instr, n) && !falsedeps) continue; |