(self, op: BufferLoad)
| 108 | return op |
| 109 | |
| 110 | def visit_buffer_load_(self, op: BufferLoad): |
| 111 | new_buffer = self.mutate_buffer(op.buffer) |
| 112 | op = super().visit_buffer_load_(op) |
| 113 | if new_buffer is not None: |
| 114 | return BufferLoad(new_buffer, op.indices) |
| 115 | return op |
| 116 | |
| 117 | def visit_buffer_store_(self, op: BufferStore): |
| 118 | new_buffer = self.mutate_buffer(op.buffer) |
nothing calls this directly
no test coverage detected